

/* start */
.empty{
    text-align: center;
}
.shop-cart{
    display: none;
    width: 350px;  
    background-color: #fff;
    position: absolute;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    top: 35px;
    right: -33px;
    transform: translateY(-10px);
    transition: opacity 0.3s, transform 0.3s;
    color: #000;
    padding: 20px;
    z-index: 99;
}
.shop-delete{
    background: var(--primary-one);
    width: 20px;
    line-height: 20px;
    border-radius: 50%;
    text-align: center;
    color: #fff;
    flex: none;
}
.shop-cart-subtotal{
    font-weight: 600;
}
.shop-cart-icon:hover .shop-cart{
    display: block;
}
.shop-cart-footer .view_cart_btn{
    display: block;
    background-color: transparent;
    border: 1px solid var(--primary-one);
    text-align: center; 
}
.shop-cart::after{  
    content: ''; 
    position: absolute;
    top: -7px;
    right: 33px;
    width: 15px;
    height: 15px;
    background: #fff;
    transform: rotate(44deg);  
}
.shop-cart-total{
    padding: 10px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #ddd;
}
.chekc_btn{
    background-color: var(--primary-one);
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
}
.shop-cart-body{

    max-height: 400px;
    overflow-y: auto;
   
}
.shop-cart-body a{
    text-decoration: none;
    color: #212121;
}
.shop-cart-items{
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ddd;
}
.shop-cart-footer{
    padding: 10px 20px;
}
.shop-img img{
    object-fit: contain;
    width:50px;
    height: 50px;
}
.shop-info{
    padding: 0px 3px;
    text-align: left;
}

#to-top{
    width: 30px;
    line-height: 25px;
    background-color: var(--primary-one);
    border-radius: 3px;
    vertical-align: middle;
    text-align: center;
    position: fixed;
    bottom: 30px;
    right: 20px;
    z-index: 9999;
    cursor: pointer;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    display: none;
}
.mobile-menu-search {
    padding: 10px;
    display: flex;
    margin: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #f5f5f5;
}
.mobile-menu-search .search-input {
    flex: 1;
    padding: 8px;
    border: none;
    background-color: transparent;
    outline: none;
}
.mobile-menu-search #jq-search-btn {
    padding: 8px;
    cursor: pointer;
}
@media (max-width: 768px) {
    .search-input {  
        box-shadow: none;
    }
}
.header-action .fas.fa-search {
    position: absolute;
    right: 15px;
    color: #8914a2;
    cursor: pointer;
    transition: color 0.3s ease;
}

.header-action .fas.fa-search:hover {
    color: #4a90e2;
}
.cart-count{
    line-height: 20px;
    position: absolute;
    top: -11px;
    left: 13px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    color: var(--primary-two);
    text-align: center;
    font-size: 10px;
    font-weight: 600;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}
.side-menu {
    position: fixed;
    top: 0;
    left: -90%;
    width: 90%;
    height: 100%;
    background: white;
    z-index: 1000;
    transition: left 0.3s ease;
    overflow-y: auto;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

.side-menu.active {
    left: 0;
}
.big_hide{
    display: none;
}
.menu-header {
    height: 50px;
    background: linear-gradient(135deg, var(--primary-one), var(--primary-two));
    color: white;
    display: flex;
    align-items: center;
    padding: 0 15px;
    font-weight: bold;
}

.menu-close {
    margin-left: auto;
    font-size: 20px;
    cursor: pointer;
}

.menu-list {
    list-style: none;
    padding: 10px 0;
}

.menu-item {
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.side-menu .menu-link {
    display: block;
    width: 90%;   
    padding: 12px 15px;
    color: #333;
    text-decoration: none;
    font-size: 15px;
}

.side-menu .menu-link:hover {
    background-color: #f9f9f9;
}

.menu-icon {
    margin-right: 10px;
    font-size: 16px;
    color: #666;
}

.menu-arrow {
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease;
    transform-origin: center; 
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-arrow.expanded {
    transform: rotate(90deg);
}

.submenu {
    width: 100%;
    list-style: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f9f9f9;
}

.submenu.expanded {
    max-height: 1000px;
}

.submenu .menu-link {
    padding-left: 40px;
}

.submenu .submenu .menu-link {
    padding-left: 65px;
}


.content {
    margin-top: 60px;
    padding: 15px;
}

.content h1 {
    font-size: 20px;
    margin-bottom: 15px;
}

.content p {
    line-height: 1.6;
    margin-bottom: 10px;
}

.successful_title{
    color: #58a81e;
    padding: 10px;
    text-align: center;
    font-weight: 600;
    font-size: 18px; 
    animation: flash 0.5s ease-in-out;
}
@keyframes flash {
    0%, 100% {
        opacity: 1;
    }
    25%, 75% {
        opacity: 0.5;
    }
}
.quantity-control {
    display: flex;
    align-items: center;
    margin: 15px 0;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    font-size: 16px;
    background-color: #f0f0f0;
    border: 1px solid #ddd;
    cursor: pointer;
    transition: background-color 0.3s;
}

.quantity-btn:hover {
    background-color: #e0e0e0;
}

.quantity-input {
    width: 50px;
    height: 30px;
    text-align: center;
    border: 1px solid #ddd;
    border-left: none;
    border-right: none;
    -moz-appearance: textfield;
    outline: none;
    font-size: 12px;
}

.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* nodel */

.loading-spinner {
    --uib-size: 80px;
    --uib-color: black;
    --uib-speed: 1.4s;
    --uib-stroke: 5px;
    --uib-bg-opacity: .1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 5px;
    width: 100px;
    border-radius: calc(5px / 2);
    overflow: hidden;   
}
.loading-spinner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: black;
    opacity: .1;
    transition: background-color 0.3s ease;
  }

  .loading-spinner::after {
    content: '';
    height: 100%;
    width: 100%;
    border-radius: calc(5px / 2);
    animation: zoom 1.4s ease-in-out infinite;
    transform: translateX(-100%);
    background-color: black;
    transition: background-color 0.3s ease;
  }

  
  @keyframes zoom {
    0% {
      transform: translateX(-100%);
    }
    100% {
      transform: translateX(100%);
    }
  }
.Pop-up{
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    max-width: 600px;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    z-index: 1001;
    overflow: hidden;
    animation: modalFadeIn 0.5s;
}
.Pop-up .top_header{
    display: flex;
    align-items: center;
    padding: 5px;
    justify-content: end;
}
.Pop-up .products_box{
  padding: 20px;
}
.Pop-up  .box_price .discount_price{
    text-decoration: line-through;
    color: #2a2828;
    font-size: 14px;
}
.Pop-up  .box_price .price{    
    color: #2a2828;
    font-weight: 500;
    font-size: 16px;
    margin-left: 15px;
}
.Pop-up .btn {
    display: flex;
    align-items: center;
    justify-content: center;
}
.Pop-up  .btn  .button{
    padding: 10px;
    background:var(--primary-one);
    border-radius: 5px;
    margin: 0px 5px;
    color: #fff;
    font-weight: 500;
    cursor: pointer;
}
.Pop-up select {
    padding: 2px 5px;
    width: 300px;
    height: 2.75rem;
    border: 1px solid #ddd;
    font-size: 12px;
    transition: border-color 0.3s ease;
    box-shadow: inset 0 -1.4em 1em 0 rgba(0, 0, 0, .02);
    outline: none;
}
.Pop-up .sku_code{
    margin-top: 10px;
}

.overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 1000;
    /* backdrop-filter: blur(5px); */
}
@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -60%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}


/* end */



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Comic Neue', cursive, sans-serif;
}

:root {
    --primary-one: #7B68EE;
    --primary-two: #FF69B4;
    --primary-three: #00CED1;
    --accent-one: #FFD700;
    --accent-two: #98FB98;
    --neutral-dark: #2F4F4F;
    --neutral-light: #F5FFFA;
    --neutral-mid: #E6E6FA;
    --shadow-heavy: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-light: 0 5px 15px rgba(0, 0, 0, 0.08);
    --transition-smooth: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}


.pageMaster {
    width: 100%;
    min-height: 100vh;
    background-color: #fff;
    position: relative;
    overflow-x: hidden;
}


.announcementStrip {
    background: linear-gradient(90deg, var(--primary-one), var(--primary-three));
    color: white;
    padding: 12px 0;
    text-align: center;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
}

.stripText {
    position: relative;
    z-index: 2;
    animation: textGlide 35s linear infinite;
}

@keyframes textGlide {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}


.siteHead {
    background-color: white;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-light);
}

.headWrapper {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.brandIdentity {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logoGraphic {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-two), var(--primary-one));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: var(--shadow-light);
}

.brandName {
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(90deg, var(--primary-one), var(--primary-two));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

/* 搜索区域 */
.searchPanel {
    flex-grow: 1;
    max-width: 500px;
    margin: 0 30px;
    position: relative;
}

.searchField {
    width: 100%;
    padding: 14px 25px;
    border-radius: 50px;
    border: 2px solid var(--neutral-mid);
    font-size: 1rem;
    transition: var(--transition-smooth);
    background-color: var(--neutral-light);
}

.searchField:focus {
    outline: none;
    border-color: var(--primary-three);
    box-shadow: 0 0 0 3px rgba(0, 206, 209, 0.2);
}

.searchIcon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-one);
    font-size: 1.2rem;
}

/* 用户操作图标 */
.userActions {
    display: flex;
    gap: 25px;
}

.actionIcon {
    position: relative;
    font-size: 1.5rem;
    color: var(--neutral-dark);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.actionIcon:hover {
    color: var(--primary-two);
    transform: translateY(-3px);
}

.badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--primary-two);
    color: white;
    font-size: 0.7rem;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}


.navPanel {
    background-color: var(--neutral-light);
    border-top: 1px solid var(--neutral-mid);
    border-bottom: 1px solid var(--neutral-mid);
}

.navContainer {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

.mainNav {
    display: flex;
    list-style: none;
    /* justify-content: space-between; */
}

.navNode {
    position: relative;
}

.navLink {
    display: flex;
    align-items: center;
    padding: 20px 25px;
    color: var(--neutral-dark);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition-smooth);
    position: relative;
}

.navLink:hover {
    color: var(--primary-one);
}

.navLink.active {
    color: var(--primary-one);
}

.navLink.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-two), var(--primary-one));
    border-radius: 2px 2px 0 0;
}

.navArrow {
    margin-left: 8px;
    font-size: 0.8rem;
    transition: transform 0.3s;
}

.navNode:hover .navArrow {
    transform: rotate(180deg);
}


.subNav {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 250px;
    box-shadow: var(--shadow-heavy);
    border-radius: 0 0 10px 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-smooth);
    z-index: 100;
    padding: 15px 0;
    list-style: none;
}

.navNode:hover .subNav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.subNode {
    position: relative;
    border-bottom: 1px solid #f0f0f0;
}

.subNode:last-child {
    border-bottom: none;
}

.subLink {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 25px;
    color: var(--neutral-dark);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.subLink:hover {
    background-color: var(--neutral-light);
    color: var(--primary-two);
    padding-left: 35px;
}


.thirdNav {
    list-style: none;
    position: absolute;
    top: 0;
    left: 100%;
    background-color: white;
    min-width: 230px;
    box-shadow: var(--shadow-heavy);
    border-radius: 0 10px 10px 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(20px);
    transition: var(--transition-smooth);
    padding: 15px 0;
}

.subNode:hover .thirdNav {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.thirdNode {
    border-bottom: 1px solid #f0f0f0;
}

.thirdLink {
    display: block;
    padding: 12px 25px;
    color: var(--neutral-dark);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.thirdLink:hover {
    background-color: var(--accent-two);
    color: var(--primary-one);
}


.heroDisplay {
    padding: 80px 0;
    background: linear-gradient(135deg, #E0F7FA 0%, #E8F5E9 100%);
    position: relative;
    overflow: hidden;
}

.heroContainer {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.heroContent {
    flex: 1;
    max-width: 600px;
}

.heroTitle {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--neutral-dark);
    margin-bottom: 25px;
}

.highlight {
    color: var(--primary-two);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: rgba(255, 105, 180, 0.2);
    z-index: -1;
}

.heroDescription {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.7;
}

.heroButtons {
    display: flex;
    gap: 20px;
}

.btnPrimary {
    background: linear-gradient(90deg, var(--primary-one), var(--primary-two));
    color: white;
    border: none;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-light);
}

.btnPrimary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(123, 104, 238, 0.3);
}

.btnSecondary {
    background-color: white;
    color: var(--primary-one);
    border: 2px solid var(--primary-one);
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btnSecondary:hover {
    background-color: var(--primary-one);
    color: white;
    transform: translateY(-3px);
}

.heroVisual {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.heroImage {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: var(--shadow-heavy);
    transform: perspective(1000px) rotateY(-10deg);
    transition: var(--transition-smooth);
}

.heroImage:hover {
    transform: perspective(1000px) rotateY(0deg);
}


.featuredArea {
    padding: 100px 0;
    background-color: white;
}

.sectionHeader {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 70px;
}

.sectionTag {
    display: inline-block;
    background-color: var(--accent-two);
    color: var(--neutral-dark);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 20px;
}

.sectionTitle {
    font-size: 2.8rem;
    color: var(--neutral-dark);
    margin-bottom: 20px;
}

.sectionSubtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.productDisplay {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 35px;
}

.productCard {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition-smooth);
    position: relative;
}

.productCard:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.productImage {
    height: 220px;    
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: var(--primary-three);
    position: relative;
    overflow: hidden;
}

.productImage::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(123, 104, 238, 0.1), rgba(0, 206, 209, 0.1));
}

.productBadge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-two);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 2;
}

.productInfo {
    padding: 25px;
}

.productTitle {
    font-size: 1.4rem;
    color: var(--neutral-dark);
    margin-bottom: 10px;
}

.productDescription {
    color: #777;
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.productFooter {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.productPrice {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-one);
}

.cartAction {
    background-color: var(--accent-one);
    color: var(--neutral-dark);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.cartAction:hover {
    background-color: var(--primary-two);
    color: white;
    transform: rotate(15deg) scale(1.1);
}


.categoryArea {
    padding: 100px 0;
    background-color: var(--neutral-light);
}

.categoryDisplay {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.categoryCard {
    background-color: white;
    border-radius: 15px;
    padding: 40px 25px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition-smooth);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.categoryCard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-one), var(--primary-two));
    z-index: 2;
}

.categoryCard:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.categoryIcon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--neutral-mid), white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--primary-three);
    margin: 0 auto 25px;
    transition: var(--transition-smooth);
}

.categoryCard:hover .categoryIcon {
    transform: scale(1.1) rotate(5deg);
    color: var(--primary-two);
}

.categoryName {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neutral-dark);
    margin-bottom: 15px;
}

.categoryCount {
    color: #777;
    font-size: 0.9rem;
}


.siteFooter {
    background-color: var(--neutral-dark);
    color: white;
    padding: 80px 0 30px;
}

.footerContainer {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.footerColumn {
    display: flex;
    flex-direction: column;
}

.footerTitle {
    font-size: 1.4rem;
    margin-bottom: 30px;
    color: var(--accent-one);
    position: relative;
    padding-bottom: 15px;
}

.footerTitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-three);
}

.footerLink {
    color: #ddd;
    text-decoration: none;
    margin-bottom: 15px;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footerLink:hover {
    color: var(--accent-two);
    transform: translateX(5px);
}

.newsletterForm {
    display: flex;
    margin-top: 20px;
}

.newsletterInput {
    flex-grow: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 50px 0 0 50px;
    font-size: 1rem;
}

.newsletterInput:focus {
    outline: none;
}

.newsletterButton {
    background: linear-gradient(90deg, var(--primary-three), var(--primary-one));
    color: white;
    border: none;
    padding: 0 30px;
    border-radius: 0 50px 50px 0;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.newsletterButton:hover {
    opacity: 0.9;
}

.socialLinks {
    display: flex;
    gap: 10px;
    margin-top: 5px;
    flex-wrap: wrap;
}

.socialIcon {
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: var(--transition-smooth);
    text-decoration: none;
    cursor: pointer;
}

.socialIcon:hover {
    background-color: var(--primary-two);
    transform: translateY(-5px);
}

.footerBottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
    font-size: 0.9rem;
}



@media (max-width: 900px) {
    .small_hide{ display: none; }
    .headWrapper {
        /* flex-direction: column; */
        gap: 5px;
    }
    
    .searchPanel {
        max-width: 100%;
        margin: 0;
        order: 3;
    }
    
    .mainNav {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .heroTitle {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .shop-cart-icon:hover .shop-cart{
        display: none;
    }
    .small_hide{ display: none; }
    .big_hide {
        display: block;
    }
    .navPanel {
        overflow-x: auto;
    }
    
    .mainNav {
        width: max-content;
    }
    
    .navNode {
        white-space: nowrap;
    }
    
    .subNav {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        display: none;
        background-color: var(--neutral-light);
        padding: 0;
    }
    
    .navNode:hover .subNav {
        display: block;
    }
    
    .thirdNav {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        display: none;
        padding: 0;
    }    

    .subNode:hover .thirdNav {
        display: block;
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.floating {
    animation: float 5s ease-in-out infinite;
}