* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
    
}

body {
    background-color: #ffffff;
    color: #333;
    line-height: 1.7;
}

a {
    text-decoration: none;
    color: #040404;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
.header-container {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.nav-mobile {
    display: none;
}

.top-header {
    display: block;
  }

.mobile-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* Ensure mobile-flex occupies full width if needed */
    width: 100%;
  }
  
  /* Desktop styles */
  @media (min-width: 1025px) {
    /* Make the top-header a flex container for all four elements */
    .top-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    /* Flatten the .mobile-flex container so its children act as direct children of .top-header */
    .mobile-flex {
      display: contents;
    }
    /* Now, the direct children of .top-header are:
       .search-container, .logo, .auth-links, .mobile-nav */
    .top-header > .search-container,
    .top-header > .logo,
    .top-header > .auth-links,
    .top-header > .mobile-nav {
      flex: 1;
      text-align: center;
    }
    /* Optional: Align left/right for the extreme items */
    .search-container {
      text-align: left;
    }

    .mobile-nav {
      text-align: right;
    }
  }

.top-header {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap:100px;
}

.mobile-flex {
    margin: 0 auto;
    padding: 15px;
    display: flex;
    justify-content: end;
    align-items: center;
    column-gap: 50px;
}

.search-container {
    position: relative;
    width: 300px;
}

.search-bar {
    width: 300px;
    padding: 8px 35px 8px 12px;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-size: 18px;
}

.search-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    cursor: pointer;
}

.logo {
    text-align: center;
}

.logo img {
    height: 40px;
}

.auth-links {
    color: #666;
    font-size: 18px;
}

.auth-links a {
    text-decoration: none;
    color: #666;
}

.auth-links a:hover {
    color: #333;
}

.mobile-nav img{
    width: 40px;
}

.nav-container {
    border-top: 1px solid #eee;
    background: #fff;
}

/* Main Navigation Container */
.main-nav {
    display: flex;
    gap: 20px;
    padding: 15px;
    align-items: center;
  }
  
  /* Each nav item wrapper is inline-block so that items are horizontal */
  .nav-item-wrapper {
    position: relative;
    display: inline-block;
    min-width: max-content;
  }
  
  /* Navigation links styling */
  .nav-item {
    color: rgb(0, 0, 0);
    text-decoration: none;
    padding: 10px 15px;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  /* Change link color on hover */
  .nav-item:hover {
    color: #f4a261;
  }
  
  /* Hide the checkbox used for toggling */
  .toggle-dropdown {
    display: none;
  }
  
  /* Style the toggle icon (down arrow) */
  .toggle-icon {
    color: white;
    cursor: pointer;
    margin-left: 5px;
    font-size: 12px;
  }
  
  /* Dropdown menu styling */
  .drp-dn {
    display: none; /* hidden by default */
    position: absolute;
    top: 100%;  /* Position it directly below the nav item */
    left: 0;
    background: white;
    border: 1px solid #ddd;
    min-width: 150px;
    flex-direction: column;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 100;
  }
  
  /* Individual dropdown item styling */
  .dropdn {
    padding: 10px 15px;
    font-size: 14px;
    color: #333;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  /* Last item - remove bottom border */
  .dropdn:last-child {
    border-bottom: none;
  }
  
  /* Hover effect for dropdown items */
  .dropdn:hover {
    background: #f8f9fa;
  }
  
  /* Toggle the dropdown when the hidden checkbox is checked */
  .toggle-dropdown:checked + .toggle-icon + .drp-dn {
    display: flex;
  }


.nav-item.dropdown::after {
    content: "▼";
    font-size: 8px;
    margin-left: 5px;
    position: relative;
    top: 1px;
}

/* Multicolor border below header */
.rainbow-bar {
    display: flex;
    height: 6px; /* Adjust height if needed */
    width: 100%;
}

.rainbow-bar div {
    height: 100%;
}

.color1 { background-color: #808080; flex: 2; }  /* Gray */
.color2 { background-color: #FFFF00; flex: 2; }  /* Yellow */
.color3 { background-color: #FF0000; flex: 2; }  /* Red */
.color4 { background-color: #008080; flex: 2; }  /* Teal */
.color5 { background-color: #4df152; flex: 2; }
.color6 { background-color: #d31c8d; flex: 2; }


/* Banner Image */
.banner-image {
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    margin: 20px 0;
    max-height: 190px;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    margin: 15px 0;
    font-size: 16px;
    color: #666;
}

.breadcrumb a {
    color: #666;
    margin-right: 5px;
}

.breadcrumb span {
    margin: 0 5px;
}

/* Page Title */
.page-title {
    font-size: 1.9rem;
    margin: 20px 0;
    color: #333;
}

/* Category Links */
.category-links {
    display: flex;
    flex-wrap: wrap;
    margin: 20px 0;
    gap: 20px;
}

.category-column {
    flex: 1;
    min-width: 200px;
}

.category-column h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #666;
}

.category-column ul li {
    margin-bottom: 8px;
}

.category-column ul li a {
    color: #0066cc;
    font-size: 1rem;
}

/* Product Description */
.product-description {
    margin: 10px 0;
    line-height: 1.8;
    color: #666;
}

.product-description h3 {
    font-weight: 500;
}

/* Product Tabs - Updated to match screenshot exactly */
.product-tabs {
    display: flex;
    margin: 30px 0;
    gap: 5px;
}

.tab {
    padding: 12px 25px;
    background: #f5f5f5;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    color: #333;
    border: none;
    transition: all 0.2s ease;
    min-width: 180px;
}

.tab.active {
    background: #1162b3;
    color: white;
}

.tab:hover:not(.active) {
    background: #e5e5e5;
}

/* Products Grid - Updated to match screenshot */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 20px 0;
}

.flex-price {
    display: flex;
    justify-content: space-between;
}

.product-card h2 {
    font-size: 16px;
    font-family: sans-serif!important;
}

.product-card {
    background: #fff;
    border: 0px solid #eee;
    border-radius: 0;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.product-image {
    height: 200px;
    position: relative;
     text-align: center;
    overflow: hidden;
}

.product-image img {
    width: 80%;
    height: 80%;
    object-fit: cover;
}

.product-info {
    padding: 3px;
}

.product-title {
    font-size: 20px;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.4;
}

.product-description {
    color: #666;
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 1.3;
    font-weight: 400;
}

.product-price {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0;
}

.check-it-out {
    background: #ff9900;
    color: black;
    border: none;
    padding: 8px 15px;
    border-radius: 3px;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
    cursor: pointer;
}

.check-it-out:hover {
    background: #e68a00;
}

/* Zero Gravity Workstation - Updated to match screenshot */
.featured-product {
    margin: 30px 0;
}

.featured-product-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 0;
    overflow: hidden;
    padding: 20px;
}

.featured-product-content {
    display: flex;
    flex-direction: column;
}

.featured-product-image {
    width: 100%;
    margin-bottom: 15px;
}

.featured-product-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.featured-product-description {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.featured-product-price {
    font-size: 24px;
    color: #ff9900;
    font-weight: bold;
    margin: 10px 0;
    display: flex;
    align-items: baseline;
}

.price-tag {
    display: flex;
    align-items: baseline;
}

.price-currency {
    font-size: 16px;
    margin-right: 2px;
}

.price-amount {
    font-size: 24px;
    font-weight: bold;
}

.price-cents {
    font-size: 16px;
    margin-left: 1px;
}

.savings {
    font-size: 16px;
    color: #4CAF50;
    margin-left: 10px;
}

/* Celebrity Message Section - Updated to match screenshot */
.celebrity-section {
    display: flex;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 0;
    padding: 20px;
    margin: 30px 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.celebrity-images {
    flex: 0 0 40%;
}

.celebrity-images img {
    width: 100%;
    height: auto;
}

.celebrity-info {
    flex: 1;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.celebrity-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.celebrity-description {
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 18px;
    color: #666;
    font-weight: 400;
}

.celebrity-price {
    font-size: 24px;
    font-weight: bold;
    margin: 15px 0;
    color: #ff9900;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.celebrity-price button {
    width: auto;
    padding: 10px 20px;
}

/* Father's Day Card Section - Updated to match screenshot */
.card-section {
    display: flex;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 0;
    padding: 20px;
    margin: 30px 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.card-image {
    flex: 0 0 40%;
}

.card-image img {
    width: 100%;
    height: auto;
}

.card-info {
    flex: 1;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.card-description {
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 18px;
    color: #666;
    font-weight: 400;
}

.card-price {
    font-size: 24px;
    font-weight: bold;
    margin: 15px 0;
    color: #ff9900;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-price button {
    width: auto;
    padding: 10px 20px;
}

/* Pokemon Terrarium Section - Updated to match screenshot */
.terrarium-section {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 0;
    padding: 20px;
    margin: 30px 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.terrarium-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.terrarium-content {
    display: flex;
}

.terrarium-image {
    flex: 0 0 50%;
     text-align: center;
    
    
}

.terrarium-image img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 400px;
}


.terrarium-info {
    flex: 1;
    padding-left: 20px;
}

.terrarium-description {
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 18px;
    color: #666;
    font-weight: 400;
}

.full-btn {
    padding: 6px 20px !important;
    font-size: 16px;
    background: #ff9900;
    color: white;
    border: none;
    border-radius: 3px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    width: 180px;
    height: 60px;
}

.terrarium-price {
    font-size: 26px;
    font-weight: bold;
    margin: 15px 0;
    text-align: center;
    color: #ff9900;
}

.terrarium-button {
    text-align: right;
    display: flex;
    justify-content: space-between;
}

/* Special Offer Section - Updated to match screenshot */
.special-offer {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 0;
    padding: 20px;
    margin: 30px 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    display: flex;
    gap: 15px;
}

.special-offer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.special-offer-tag {
    display: inline-block;
    background: #ff9900;
    color: white;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 16px;
    font-weight: bold;
    font-family: Poppins;
}

.free-shipping {
    display: flex;
    align-items: center;
    color: #043d06;
    font-size: 18px;
    padding: 20px;
    background-color: #eef88f;
    width: 100%;
    justify-content: space-between;
    border-radius: 4px;
}

.free-shipping i {
    margin-right: 5px;
}

.special-offer-content {
    padding: 0;
}

.special-offer-title {
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 16px;
}

.special-offer-description {
    font-size: 18px;
    color: #666;
    margin-bottom: 10px;
    font-weight: 400;
}

.special-offer-rating {
    color: #ff9900;
    margin: 10px 0;
}

.special-offer-details {
    display: flex;
    margin: 15px 0;
    flex-direction:column;
}

.special-offer-details p {
    font-size: 16px;
    font-weight: 400;
}

.special-offer-column {
    display: flex;
    flex: 2;
    flex-direction: row;
}

.special-offer-label  p{
    font-weight: 600;
    font-size: 14px;
}

.special-offer-value {
    font-size: 12px;
    color: #666;
}

/* Store Logos - Updated to match screenshot */
.store-logos {
    width: 30%;
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Three columns */
    gap: 12px;
    margin: 15px 0;
}

.store-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.store-logo img {
    max-width: 140px;
    height: auto;
    object-fit: contain;
    border-radius: 5px;
    border: 1px solid lightgrey;
}

.special-offer-buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.order-now {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 8px 18px;
    border-radius: 3px;
    font-size: 16px;
    cursor: pointer;
    font-weight: 500;
}

.add-to-cart-small {
    background: #ff9900;
    color: white;
    border: none;
    padding: 8px 18px;
    border-radius: 3px;
    font-size: 14px;
    cursor: pointer;
    font-weight: 500;
}

/* Shoes Section - Updated to match screenshot */
.shoes-section {
    margin: 30px 0;
    padding: 20px;
    border-radius: 4px;
}

.flex-box-sh {
    margin: 30px 0;
    border-radius: 4px;
    display: flex;
}

.shoes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px; /* Adjust spacing between columns */
  max-width: 450px;
}

.shoe-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    width: 200px;
}

.shoe-side {
    width: 65%;
    padding: 30px;
}

.shoe-side h3 {
    font-weight: 400;
    padding: 16px;
}

.shoe-image {
    height: 230px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: rgba(0, 0, 0, 0.05);
}

.discount-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ff4444;
    color: white;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: bold;
}

.shoe-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.shoe-info {
    padding: 10px;
}

.shoe-title {
    font-weight: normal;
    font-size: 16px;
    margin-bottom: 5px;
    color: #333;
}

.shoe-price {
    color: #ff9900;
    font-weight: bold;
    font-size: 16px;
    margin: 5px 0;
}

.shoe-price span {
    color: #4CAF50;
    font-size: 14px;
    margin-left: 5px;
}

.shoe-stock {
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
}

.shoe-stock-dot {
    display: inline-flex;
    align-items: top;
    justify-content: center;
    margin-right: 5px;
}

.shoe-stock-dot img {
    width: 16px; /* Adjust icon size */
    height: 16px;
}


/* Tags Section - Updated to match screenshot */
.tags-section {
    margin: 30px 0;
    background: #f5f5f5;
    padding: 20px;
    border-radius: 4px;
}

.tags-title {
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 16px;
    color: #333;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.tag-radio {
    display: none;
}

.tag-label {
    background: #fff;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 14px;
    color: #666;
    cursor: pointer;
    border: 1px solid #ddd;
}

.tag-radio:checked + .tag-label {
    background-color: #0066cc;
    color: white;
    border-color: #0066cc;
}

/* Contact Form - Updated to match screenshot */
.contact-section {
    background: #f5f5f5;
    border: 1px solid #eee;
    border-radius: 0;
    padding: 30px;
    margin: 30px 0;
}

.contact-container {
    display: flex;
    gap: 30px;
}

.contact-form {
    flex: 1;
    background: #fff;
    padding: 20px;
    border-radius: 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.contact-title {
    font-weight: bold;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    font-size: 18px;
    text-transform: uppercase;
    color: #333;
}

.contact-title i {
    margin-right: 10px;
    color: #ff6600;
}

.form-group {
    margin-bottom: 15px;
}

.form-label {
    display: block;
    margin-bottom: 5px;
    font-size: 16px;
    color: #333;
}

.form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 16px;
}

.submit-btn {
    background-color: #ff9900;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 3px;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
}

.submit-product {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #fff;
    padding: 20px;
    border-radius: 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.submit-product-title {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: #333;
}

.submit-product-description {
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 18px;
    color: #666;
    font-weight: 400;
}

.submit-product-btn {
    background-color: #FF9900;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 3px;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
}

/* Footer - Updated to match screenshot */
footer {
    background: #333;
    color: #fff;
    padding: 20px 0;
    margin-top: 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin: 15px 0;
}

.footer-social a {
    color: #fff;
    font-size: 16px;
}

.footer-links {
    display: flex;
    gap: 20px;
    margin: 15px 0;
}

.footer-links a {
    color: #fff;
    font-size: 14px;
}

.footer-copyright {
    margin-top: 20px;
    font-size: 14px;
    text-align: center;
}

.footer-disclaimer {
    margin-top: 15px;
    font-size: 12px;
    text-align: center;
    max-width: 800px;
    color: #aaa;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .main-nav {
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
        position: absolute;
        background: white;
        flex-direction: column;
        width: -webkit-fill-available;
    }

    .nav-mobile {
        display: block;
    }

    .main-nav.active {
        display: block!important;
    }

    .main-nav {
        display: none!important
    }

    .nav-item {
        padding: 15px 15px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .celebrity-section,
    .card-section,
    .terrarium-content,
    .contact-container {
        flex-direction: column;
    }

    .celebrity-info,
    .card-info,
    .terrarium-info {
        padding-left: 0;
        padding-top: 20px;
    }

    .search-bar  {
        width: 100%;
    }

    .special-offer {
        flex-direction: column;
        align-items: flex-start;
    }

    .special-offer-tag {
        margin-bottom: 10px;
    }

    .product-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .contact-section {
        background: #f5f5f5;
        border: 1px solid #eee;
        border-radius: 5;
        padding: 10px;
        margin: 30px 0;
    }

    .flex-box-sh {
        flex-direction: column;
    }
      
    .rlt {
        flex-direction: column-reverse;
    }

    .shoe-side {
        width: 100%;
        padding: 4px;
    }

    .shoe-card {
        width: 180px;
    }

    .shoe-image {
        height: fit-content;
        padding: 4px;
    }

    .shoes-section {
        padding: 0;
    }
}

@media (max-width: 768px) {
    .top-header {
        flex-direction: column;
        gap: 15px;
    }

    .mobile-flex {
        flex-direction: row;
        gap: 5px;
        justify-content: space-between;
        padding: 0;
    }

    .search-container {
        width: 100%;
    }

    .auth-links {
        margin-top: 10px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .special-section-content {
        flex-direction: column;
    }
    
    .special-section-image {
        flex: 0 0 100%;
        margin-bottom: 15px;
    }

    .image-products {
        grid-template-columns: 1fr;
    }

    .category-links {
        flex-direction: column;
    }

    .shoe-card {
        width: 160px;
        height: auto;
    }
    
    .shoe-side h3 {
        font-size: 16px;
        padding: 10px;
    }

}


@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .user-actions {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .user-actions a {
        margin-left: 0;
        margin: 0 5px;
    }
    
    .categories {
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 10px;
    }

    .store-logos {
        flex-direction: column;
    }

    .flex-box-sh {
        margin: 30px 0;
        border-radius: 4px;
        display: flex;
        flex-direction: column;
    }

    .rlt {
        flex-direction: column-reverse;
    }

    .shoe-side {
        width: 100%;
    }

    .shoe-card {
        width: 150px;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
    }
}



/* Promo Cards Section */
.promo-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
  }
  
  .promo-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
  }
  
  .logo-container {
    margin-bottom: 16px;
  }
  
  .logo {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  
  .apple-logo {
    background-color: #000;
  }
  
  .swift-logo {
    background-color: #0078d7;
  }
  
  .logo img {
    width: 30px;
    height: 30px;
    object-fit: contain;
  }
  
  .swift-logo img {
    width: 40px;
    height: 40px;
  }
  
  .promo-card h2 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.3;
  }
  
  .promo-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 16px;
    flex-grow: 1;
  }
  
  .find-link {
    color: #0066cc;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    margin-top: auto;
  }
  
  .arrow {
    font-size: 16px;
    margin-left: 2px;
  }
  
  /* Product Cards Section */
  .product-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
  }
  
  .product-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
  }
  
  .product-image {
    height: 100%;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .product-image img {
    max-width: 80%;
    max-height: 80%;
    transition: transform 0.6s ease-in-out; /* Slower and smoother */
    object-fit: contain;
    
  }
  .product-image img:hover {
    transform: scale(1.1);
}
  
  .product-title {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 8px;
    line-height: 1.4;
    height: 60px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }
  
  .rating {
    display: flex;
    align-items: center;
    margin-bottom: 4px;
  }
  
  .stars {
    color: #ffa41c;
    font-size: 18px;
    margin-right: 5px;
  }
  
  .filled {
    color: #ffa41c;
    font-size: 25px;

  }
  
  .half-filled {
    position: relative;
    color: #ffa41c;
    font-size: 25px;
  }
  
  .empty {
    color: #e0e0e0;
    font-size: 25px;
  }
  
  .review-count {
    color: #007185;
    font-size: 13px;
  }
  
  .review-count::before {
    content: "";
    display: inline-block;
    width: 1px;
    height: 12px;
    background-color: #ddd;
    margin: 0 5px;
    vertical-align: middle;
  }
  
  .purchase-info {
    font-size: 12px;
    color: #565959;
    margin-bottom: 8px;
  }
  
  .price-container {
    display: flex;
    align-items: flex-start;
    margin-top: auto;
  }
  
  .currency {
    font-size: 13px;
    font-weight: 400;
  }
  
  .price {
    font-size: 22px;
    font-weight: 500;
  }
  
  .cents {
    font-size: 13px;
    font-weight: 400;

  }
  
  .original-price {
    font-size: 12px;
    color: #565959;
    margin-left: 8px;
  }
  
  /* Responsive styles */
  @media (max-width: 1024px) {
    .promo-row, .product-row {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 640px) {
    .promo-row, .product-row {
      grid-template-columns: 1fr;
    }
    
    .product-title {
      height: auto;
      -webkit-line-clamp: 2;
    }
  }

  @media (max-width: 480px) {
    /* General container adjustments */
    .container {
      padding: 0 10px;
    }
    
    /* Header adjustments */
    .top-header {
      flex-direction: column;
      gap: 10px;
    }
    .search-container {
      width: 100%;
    }
    .search-bar {
      font-size: 16px;
      padding: 8px 30px 8px 10px;
    }

}

  @media (max-width: 480px) {
    /* Adjust store logos to wrap and center */
    .store-logos {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin: 20px 0;
    }
    
    /* Adjust special offer header to stack vertically and center content */
    .special-offer-header {
    display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 0;
    }

    .free-shipping {
        font-size: 14px;
    }
  }
  

  .nav-container {
    border-top: 1px solid #eee;
    background: #fff;
}


.nav-item {
    position: relative;
}

.nav-item > a {
    display: block;
    color: rgb(0, 0, 0);
    padding: 8px 16px;
    text-decoration: none;
}


/* Dropdown menu styles */
.drp-dn {
    display: none;
    position: absolute;
    top: 100%;
    left: 20%!important;
    background-color: #f9f9f9;
    min-width: 120px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 1;
    align-self: center;
}

.dropdn {
    display: block;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
}

.dropdn:hover {
    background-color: #ddd;
}

/* Show dropdown on hover */
.nav-item:hover .drp-dn {
    display: block;
}


.main-nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    padding: 0 15px;
}

.nav-item {
    padding: 15px 25px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    position: relative;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.nav-item:hover {
    color: #666;
}

.nav-item:hover {
    color: #f4a261;
}

/* Dropdown Styling */
.drp-dn {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid #ddd;
    display: none; /* Hidden by default */
    flex-direction: column;
    min-width: 180px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.dropdn {
    padding: 10px 15px;
    font-size: 16px;
    color: #333;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

.dropdn:hover {
    background: #f8f9fa;
}

/* Show dropdown on hover */
.nav-item:hover + .drp-dn,
.drp-dn:hover {
    display: block;
    
}


.nav-item.dropdown::after {
    content: "▼";
    font-size: 8px;
    margin-left: 5px;
    position: relative;
    top: 1px;
}

/* Container for all items */
.list-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
  }
  
  /* Each item (row) */
  .list-item {
    display: flex;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #ccc; /* Optional border for separation */
  }
  
  /* Icon section */
  .list-item .icon {
    flex: 0 0 auto; /* Fixed size, doesn't grow */
    margin-right: 10px;
  }
  
  .list-item .icon img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    background: black;
    padding: 8px;
    border-radius: 8px;
  }
  
  /* Description (takes remaining space) */
  .list-item .description {
    flex: 1;
    margin-right: 10px;
    font-size: 16px;
    line-height: 1.4;
  }
  
  /* Rating section */
  .list-item .rating {
    flex: 0 0 auto;
    margin-right: 10px;
    font-size: 16px;
    white-space: nowrap; /* Keep rating on one line */
  }
  
  .stars {
    color: #ffa500; /* Gold star color */
    margin-right: 5px;
  }
  
  /* Link section */
  .list-item .action a {
    text-decoration: none;
    color: #007BFF;    /* Link color */
    font-weight: 500;
  }
  
  .list-item .action a:hover {
    text-decoration: underline;
  }
  
  /* Responsive: stack items on smaller screens */
  @media (max-width: 768px) {
    .list-item {
      flex-direction: column;
      align-items: flex-start;
    }
    
    .list-item .icon,
    .list-item .description,
    .list-item .rating,
    .list-item .action {
      margin-bottom: 10px;
      margin-right: 0; /* Reset right margin */
    }
  }
  
/*ADDING VENDOR VIBE SECTION*/
.vendorVibe hgroup {
    margin-bottom: 2.5rem;
    text-align: center;
}
.vendorVibe hgroup h2 {
    margin-bottom: 0;
    color: #333;
    font-size: 42px;
    font-weight: 700;
    letter-spacing: -0.08rem;
}
.vendorVibe hgroup h6 {
    margin-bottom: 0;
    color: #666;
    font-size: 20px;
    font-weight: 500;
}
.vibe_container {
    width: 800px;
    margin: 0 auto;
    max-width: 100%;
}

@media screen and (min-width: 768px) {
    .vibe_list {
        column-count: 3;
        column-gap: 1em;
    }   
    .vibe_list .vibe_list_item.one ,
    .vibe_list .vibe_list_item.five {
        margin-top: 1.5rem;
    } 
    
}


.vibe_list .vibe_list_item {
    margin-bottom: 20px;
    height: 280px;
    background-color: #eee;
    display: inline-block;
    margin: 0 0 1em;
    width: 100%;
    border-radius: 1rem;
    overflow: hidden;
}
.vibe_list .vibe_list_item.one {
    background-color: #FFC0CB;
}
.vibe_list .vibe_list_item.two .vibe_list_inner {
    background: #6A6445 url(../assets/gift-baskets.jpg) no-repeat center center / cover;
}
.vibe_list .vibe_list_item.three .vibe_list_inner {
    background: #37371B url(../assets/jewelry-collection.jpg) no-repeat center center / cover;
}
.vibe_list .vibe_list_item.four {
    background-color: #ff914d;
}
.vibe_list .vibe_list_item.five {
    background-color: #6FA8DC;
}
.vibe_list .vibe_list_item.six .vibe_list_inner {
    background: #50698F url(../assets/gift-cards.jpg) no-repeat center center / cover;
}
.vibe_list .vibe_list_item.two p ,
.vibe_list .vibe_list_item.two h4 ,
.vibe_list .vibe_list_item.two a ,
.vibe_list .vibe_list_item.three p ,
.vibe_list .vibe_list_item.three h4 ,
.vibe_list .vibe_list_item.three a ,
.vibe_list .vibe_list_item.six p ,
.vibe_list .vibe_list_item.six h4 ,
.vibe_list .vibe_list_item.six a {
    color: #fff;
}
.vibe_list .vibe_list_item.two a ,
.vibe_list .vibe_list_item.three a ,
.vibe_list .vibe_list_item.six a {
    border-color: #fff;
}
.vibe_list_inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.1rem;
    text-align: center;
    flex-direction: column;
}
.vibe_list_inner h4 ,
.vibe_list_inner p {
    margin: 0;
    color: #333;
}
.vibe_list_inner h4 {
    font-weight: 700;
    font-size: 18px;
}
.vibe_list_inner p {
    font-weight: 500;
    font-size: 14px;
}
.vibe_list_inner .hallow_button {
    margin-top: 0.2rem;
}
.hallow_button {
    background-color: transparent;
    color: #333;
    text-align: center;
    display: inline-block;
    width: auto;
    border: 1px solid #333;
    outline: none;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
    padding: 0.375rem 1rem;
    border-radius: 100px;
    transition: all 0.3s ease;
}
.hallow_button:hover {
    background-color: rgba(0,0,0,0.1);
}
.img-fluid {
    width: auto;
    height: auto;
    max-width: 100%;
}

@media screen and (min-width: 481px) and (max-width: 767px) {
    .vibe_list {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1rem;
    }
    .vibe_list .vibe_list_item {
        width: calc(50% - 1rem);
        margin: 0;
    }
}

.vendorTags {
    margin-top: 50px;
}
.vendorTags h3 {
    margin-bottom: 1.5rem;
    color: #333;
    font-size: 38px;
    font-weight: 700;
    letter-spacing: -0.08rem;
    text-align: center;
}
.vendorTags .large_tags {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}
.vendorTags .large_tags a {
    margin: 0 1rem 1rem 0;
    background-color: #f8f8f8;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    padding: 2rem 2rem;
    transition: all .3s ease;
    color: #222;
}
.vendorTags .large_tags a:hover {
    background-color: #1162b3;
    color: #fff;
}
@media screen and (max-width: 480px) {
    .vendorTags .large_tags a {
        padding: 1rem;
    }
}


.vendorVibe .vvMain {
    text-align: center;
    background: url(../assets/valentines-day-heart-background.svg) no-repeat center top / contain;
    padding: 60px 0;    
}
.vendorVibe {
    background: linear-gradient(to bottom,  #f6fcff 0%,#ffffff 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
.vendorVibe .vvMain h1 {
    color: #333;
    font-size: 72px;
    font-weight: 700;
    letter-spacing: -0.08rem;
    line-height: 1;
    width: 800px;
    max-width: 100%;
    margin: 0 auto;
}
.vendorVibe .vvMain .form_wrap {
    margin: 2rem 0;
}
.vendorVibe .vvMain .form_wrap h4 {
    color: #333;
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    text-align: center;
}
.vendorVibe .vvMain .form_wrap .form_info_message {
    color: #999;
    font-size: 13px;
    font-weight: 500;
    margin: 0 0 .25rem 0;
    text-align: center;
}
.vendorVibe .vvMain .form_wrap .form_info_message a {
    text-decoration: underline;
    color: #666;
    font-weight: 500;
}
.vendorVibe .vvMain .form_wrap form {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    justify-content: center;
}
.vendorVibe .vvMain .form_wrap input[type='text'] ,
.vendorVibe .vvMain .form_wrap input[type='email'] ,
.vendorVibe .vvMain .form_wrap input[type='password'] {
    background-color: #fff;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    padding: 0.8rem 1rem ;
    outline: none;
    border: 1px solid #999;
    width: 180px;
}
.vendorVibe .vvMain .form_wrap input[type='submit'] {
    background-color: #1162b3;
    border: 0;
    outline: none;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    padding: 0.5rem 1rem;
    height: 44px;
    width: 110px;
}

@media screen and (max-width: 1024px) {
    .vendorVibe .vvMain h1 {
        font-size: 62px;
    }
}
@media screen and (max-width: 640px) {
    .vendorVibe .vvMain h1 {
        font-size: 48px;
    }
}
@media screen and (max-width: 480px) {
    .vendorVibe .vvMain h1 {
        font-size: 46px;
    }
    .vendorVibe .vvMain .form_wrap form {
        flex-direction: column;
    }
    .vendorVibe .vvMain .form_wrap input[type='text'] ,
    .vendorVibe .vvMain .form_wrap input[type='email'] ,
    .vendorVibe .vvMain .form_wrap input[type='password'] ,
    .vendorVibe .vvMain .form_wrap input[type='submit'] {
        width: 100%;
    }
}



.vibe_list .vibe_list_item ,
.vibe_list .vibe_list_item .vibe_list_inner ,
.vibe_list .vibe_list_item .vibe_list_inner img {
    transition: all 0.3s ease;
}
.vibe_list .vibe_list_item.one:hover .vibe_list_inner img ,
.vibe_list .vibe_list_item.four:hover .vibe_list_inner img ,
.vibe_list .vibe_list_item.five:hover .vibe_list_inner img  {
    transform: scale(1.05) rotate(-4deg);
}
.vibe_list .vibe_list_item.two:hover .vibe_list_inner ,
.vibe_list .vibe_list_item.three:hover .vibe_list_inner ,
.vibe_list .vibe_list_item.six:hover .vibe_list_inner {
    transform: scale(1.05);
}

.section_title {
    margin: 2rem 0 1rem 0;
    font-size: 28px;
    font-weight: 700;
    color: #333;
}
h3 {
    position: relative;
}
h3 .productNumber {
    font-size: 25px;
    line-height: 64px;
    font-weight: 700;
    color: #aaa;
    position: absolute;
    left: 0px;
    top: 0;
    z-index: -1;
}
.product-card h3 {
    position: relative;
    z-index: 1;
}

.product-card .product_card_title {
    font-size: 22px;
    margin: 0 0 0.5rem;
    font-weight: 700;
    letter-spacing: -0.02rem;
}
.auth-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.d-flex {
    display: flex;
}
.country_dropdown {
    transition: all 0.3s ease;
    width: 120px;
    position: relative;
}
.country_dropdown .cd_head {

}
.country_dropdown .cd_body {    
    border: 1px solid #ccc;    
    position: absolute;
    left: 0;
    top: auto;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border-radius: 4px;
}
.country_dropdown .cd_option {
    display: flex;
    width: 100%;
    border-bottom: 1px solid #eee;
    padding: 0.5rem;    
    background-color: #fff;
    align-items: center;    
}
.country_dropdown .cd_head .cd_option {
    border-bottom: 0;
}
.country_dropdown .cd_head .cd_option .chevron {
    width: 16px;
    height: 16px;
    opacity: 0.5;
}
.country_dropdown .cd_option img.flag {
    width: 18px;
    height: 18px;
    border-radius: 24px;
    border: 1px solid #eee;
    margin-right: 4px;
}
.country_dropdown .cd_option h6 {
    font-size: 13px;
    font-weight: 500;
    color: #444;
    margin: 0;
}
.country_dropdown:hover .cd_body {
    opacity: 1;
    bottom: auto;
    visibility: visible;
    top: auto;
    background-color: #fff;
    z-index: 1;
}
.country_dropdown .cd_body .cd_option:hover {
    background-color: #f8f8f8;
}
.auth-links .auth-linkss a {
    font-size: 14px;
    font-weight: 500;
}
.auth-links .auth-linkss {
    line-height: 1;
    gap: 0.2rem;
}

.submit-product-btn {
  border: none;
  border-radius: 5px;
  padding: 8px 16px;
  font-size: 12px;
  cursor: pointer;
  background-color: #282A35;
  color: white;
  position: relative;
}

.ribbon {
  width: 60px;
  font-size: 10px;
  padding: 4px;
  position: absolute;
  right: -25px;
  top: -12px;
  text-align: center;
  border-radius: 25px;
  transform: rotate(20deg);
  background-color: #ed0303;
  color: white;
}


/*for spSection*/
.spSection P{
    margin-bottom: 1rem;
    color: #666;
}
.spSection h2 {
    font-weight: bold;
    line-height: 2.5;
	padding-left: 50px;
}
.spSection h2:before {
 content:url("../assets/hearts.svg");
  display:block;
  width:40px;
  height:40px;
  background-repeat: no-repeat;
    margin: 0 0 -50px -52px;
}
.spSection ul {
    margin: 0;
    padding: 0 0 0 1rem;
    list-style-type: none;
}
.spSection ul li {
    margin: 0 0 0.25rem 0;
    padding: 0;
    list-style-type: none;
    position: relative;
}
.spSection p a {
  color: black;
  font-weight: 600;
  padding-bottom: 3px;
  box-shadow: inset 0 -3px 0 #e19a4f;
}
.spSection ul li:before {
    content: "";
    background-color: #666;
    width: 8px;
    height: 8px;
    border-radius: 8px;
    position: absolute;
    left: -1rem;
    top: 8px;
}
.spSection .sp_cta_wrap {
    text-align: center;
    margin: 1.5rem 0; 
}
.spSection .sp_cta_wrap a {
    background-color: #1162b3;
    border: 0;
    outline: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    padding: 0.5rem 1rem;
    height: auto;
    width: auto;
}
.spSection .sp_cta_wrap a:hover {
    opacity: 0.8;
}
.spSection ol {
    margin: 0;
    padding: 0 0 0 1rem;
}
.spSection .sp_table_wrap {
    margin: 1rem 0;
}
.spSection .sp_table_wrap table {
    width: 800px;
    margin: 0 auto;
    max-width: 100%;
}
.spSection .sp_table_wrap table thead th {
    text-align: left;
    border-top: 1px solid #eee;
    border-bottom: 2px solid #eee;
    font-size: 16px;
}
.spSection .sp_table_wrap table th ,
.spSection .sp_table_wrap table td {
    padding: 8px;
}
@media screen and (max-width: 360px) {
    .spSection .sp_table_wrap table th ,
    .spSection .sp_table_wrap table td {
        padding: 4px;
    }   
}
.spSection .sp_table_wrap table td {
    border-bottom: 1px solid #eee;
    font-size: 16px;
}
  