@font-face {
    font-family: Montagu Slab;
    src: url(fonts/MontaguSlab-VariableFont_opsz\,wght.ttf);
}

@font-face {
    font-family: Epilogue;
    src: url(fonts/Epilogue/Epilogue-VariableFont_wght.ttf);
}

@font-face {
    font-family: Figtree;
    src: url(fonts/MontaguSlab-VariableFont_opsz\,wght.ttf);
}

@font-face {
    font-family: Oleo Script;
    src: url(fonts/Oleo_Script/OleoScript-Regular.ttf);
}

@font-face {
    font-family: Asul;
    src: url(fonts/Asul/Asul-Regular.ttf);
}

@font-face {
    font-family: Lexend;
    src: url(fonts/Lexend/Lexend-VariableFont_wght.ttf);
}

@font-face {
    font-family: ALIKE Angular;
    src: url(fonts/Alike_Angular/AlikeAngular-Regular.ttf);
}

@font-face {
    font-family: Federo;
    src: url(fonts/Federo/Federo-Regular.ttf);
}

@font-face {
    font-family: Poppins;
    src: url(fonts/Poppins/Poppins-Regular.ttf);
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #fff;
    color: black;
    line-height: 1.5;
    overflow-x: hidden;
}
.category-link {
    text-decoration: none;
    color: inherit;
    display: block;
}
.category-link:visited {
    color: inherit;
}
.category-label {
    text-decoration: none !important;
}
.top-bar {
    background: #fff;
    color: black;
    font-size: 12px;
    padding: 6px 0px;
    text-align: left;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    letter-spacing: 0.01em;
}

.top-bar>span {
    flex: 1 1 0;
    text-align: left;
    padding-left: 220px;
    white-space: nowrap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
    line-height: 22px;
    cursor: pointer;

}

.top-bar-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 0 0 auto;
    margin-right: 100px;
}

.top-bar-links span {
    margin-left: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    margin-right: 20px;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 18px;
    color: #000000;
    position: relative;
    overflow: hidden;
}

.top-bar-links .icon-text {
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.top-bar-links .icon-text::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: black;
    z-index: 2;
    pointer-events: none;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.30s cubic-bezier(0.4,0,0.2,1);
}

.top-bar-links span:hover .icon-text::after,
.top-bar-links span:focus .icon-text::after {
    transform: scaleX(1);
}

.top-bar-links span:hover .icon-text,
.top-bar-links span:focus .icon-text {
    color: #FED61D;
    text-decoration: none;
}

.top-bar-links img {
    width: 1.5em;
    height: 1.5em;
    object-fit: contain;
    vertical-align: middle;
    margin-right: 4px;
    display: inline-block;
    transition: width 0.2s, height 0.2s;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px 20px 40px;
    background: #fff;
    gap: 32px;
}

header a {
    text-decoration: none;
    color: black;
}
.icon-wishlist a, .icon-account a {
    display: flex;
    align-items: center;
    color: inherit;
    text-decoration: none;
}
.icon-wishlist a:hover, .icon-account a:hover {
    color: #FED61D;
}

.logo {
    font-family: 'Oleo Script';
    margin-right: 20px;
    margin-left: 40px;
    font-weight: 400;
    font-size: 35px;
    line-height: 48px;
    cursor: pointer;
}

#sticky {
    position: sticky;
    top: 0;
    overflow: hidden;
    z-index: 5;
}


nav {
    display: flex;
    gap: 50px;
    flex: 1 1 auto; 
    justify-content: center;
    
    
}

nav a {
    text-decoration: none;
    color: black;
    letter-spacing: 0.02em;
    transition: color 0.2s;
    padding: 0 6px;
    font-family: 'Lexend';
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 25px;
    position: relative;
    overflow: hidden;
}

.nav-text {
    position: relative;
    overflow: hidden;
    display: inline-block;
}
.nav-text::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: black;
    z-index: 2;
    pointer-events: none;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.30s cubic-bezier(0.4,0,0.2,1);
}
nav a:hover .nav-text::after,
nav a:focus .nav-text::after {
    transform: scaleX(1);
}
nav a:hover .nav-text,
nav a:focus .nav-text {
    color: #FED61D;
    text-decoration: none;
}

nav a.active .nav-text {
    color: #000;
}
nav a.active .nav-text::after {
    transform: scaleX(1);
    background: black;
}
nav a.active:hover .nav-text,
nav a.active:focus .nav-text {
    color: #000;
}

.cart {
    font-family: 'Lexend';
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 25px;
    margin-left: 10px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.cart:hover{
    color: #FED61D;
}

.cart img {
    width: 1.3em;
    height: 1.3em;
    margin-right: 6px;
    margin-bottom: 13px;
    vertical-align: middle;
}
.cart-count{
    font-weight: normal;
}

.cart-text {
    position: relative;
    overflow: hidden;
    display: inline-block;
}
.cart-text::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: black;
    z-index: 2;
    pointer-events: none;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.30s cubic-bezier(0.4,0,0.2,1);
}
.cart:hover .cart-text::after,
.cart:focus .cart-text::after {
    transform: scaleX(1);
}
.cart:hover .cart-text,
.cart:focus .cart-text {
    color: #FED61D;
    text-decoration: none;
}

.cart-link {
    text-decoration: none;
    color: inherit;
}

.hero {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    background: #FED61D;
    padding: 50px 0 50px 0;
    min-height: 420px;
    height: 100vh;
    position: relative;
    padding: 0;
    
    cursor: pointer;
}

.hero-content {
    flex: 1 1 0;
    max-width: 600px;
    color: #fff;
    padding-left: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    

}

.hero-content h1 {
    margin-bottom: 18px;
    font-family: 'Montagu Slab';
    font-style: normal;
    font-weight: 500;
    font-size: 80px;
    line-height: 103px;
  
    width: 715px;
}

.hero-content p {
    margin-bottom: 32px;
    font-family: 'Asul';
    font-style: normal;
    font-weight: 400;
    font-size: 30px;
    line-height: 36px;
    color: #FFFFFF;
   
    width: 735px;
}

.hero-content button {
    background: transparent;
    border: 1px solid #ffffff;
    color: #fff;
    padding: 10px 20px;
    font-family: 'Federo';
    font-style: normal;
    font-weight: 400;
    font-size: 25px;
    line-height: 29px;
    cursor: pointer;
    border-radius: 2px;
    transition: background 0.2s, color 0.2s;
    width: 180px;
    text-decoration:none;

}

.hero-content button:hover {
    background: #fff;
    color: #ffd600;
}

.hero-image {
    height: 100%;
    flex: 1 1 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;

}

.hero-image img {
    height: 100%;

    width: auto;
    max-width: none;
    object-fit: cover;
    border-radius: 0;
    display: block;
}

.categories {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    padding: 48px 10px 32px 10px;
    overflow-x: auto;
    scrollbar-width: thin;
}


.category-item {
    width: 220px;
    height: 170px;
    background: #f1f1f1;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-item:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.category-item img {
    width: 90%;
    height: 100%;
    object-fit: contain;
    display: block;
    border: none;
}

.category-label {
    display: block;
    text-align: center;
    color: black;
    margin-top: 12px;
    margin-bottom: 0;
    width: 220px;
    min-width: unset;
    max-width: unset;
    font-family: 'Alike Angular';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
}

.bestsellers {
    padding: 48px 0 32px 0;
    background: #fff;
    text-align: center;
}

.bestsellers h2 {
    margin-bottom: 32px;
    font-family: 'Epilogue';
    font-style: normal;
    font-weight: 700;
    font-size: 50px;
    line-height: 51px;
    cursor: pointer;

}

.bestseller-list {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: flex-start;
}

.bestseller-product {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 350px;
    cursor: pointer;
}

.bestseller-item {
    background: #eeeeee;
    border-radius: 32px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    width: 300px;
    height: 300px;
    min-width: 320px;
    min-height: 320px;
    max-width: 420px;
    max-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border: none;
    overflow: hidden;
}

.bestseller-item img {
    width: 80%;
    height: 80%;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.bestseller-info {
    text-align: center;
    margin-top: 18px;
    margin-bottom: 32px;
}

.bestseller-title {
    font-family: 'Alike Angular';
    font-style: normal;
    font-weight: 500;
    font-size: 28px;
    line-height: 32px;
    color: #000000;
    margin-bottom: 8px;
}

.stars {
    color: #ffd600;
    font-size: 22px;
    margin-bottom: 8px;
}

.price {
    font-family: 'Alike Angular';
    font-size: 22px;
    color: #000;
    margin-bottom: 0;
}

.about {
    padding: 50px 180px 50px 180px;
    background: #fff;
    text-align: center;
    width: 100%;
    margin: 0 auto;
   
}

.about h2 {
    margin-bottom: 18px;
    font-family: 'Epilogue';
    font-style: normal;
    font-weight: 700;
    font-size: 50px;
    line-height: 51px;
    text-align: center;
    cursor: pointer;
}

.about p {
    text-align: justify;
    font-family: 'Asul';
    font-style: normal;
    font-weight: 400;
    font-size: 26px;
    line-height: 32px;
    color: #000000;
    cursor:default;
    

}

.promo-row {
    display: flex;
    gap: 35px;
    padding: 40px 0;
    background: #fff;
    justify-content: center;
    align-items: stretch;
}

.promo {
    background: #eeeeee;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    flex: 1 1 0;
    min-width: 320px;
    max-width: 100%;
    width: 420px;
    height: 600px;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: relative;
    overflow: hidden;
}

.promo-text {
    flex: 1 1 0;
    margin: 0;
    padding: 36px 0 0 32px;
    text-align: left;
    z-index: 2;
    max-width: 60%;
    margin-top: 100px;
    font-family: 'Figtree';
    font-style: normal;
    font-weight: 500;
    font-size: 45px;
    line-height: 60px;
    color: #000000;
    cursor: pointer;
}

.promo button {
    background: #fff;
    border: 1px solid black;
    color: black;
    font-size: 14px;
    cursor: pointer;
    border-radius: 2px;
    width: 150px;
    height: 40px;
    transition: background 0.2s, color 0.2s;
    display: block;
    text-align: center;
    margin-bottom: 150px;
    margin-left: 30px;
    font-family: 'Federo';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    padding: 10px 30px 30px 30px;
    text-decoration: none;

}

.promo button:hover {
    background: black;
    color: #fff;
}

.promo img {
    flex: 1 1 0;
    width: 50%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 12px 12px 0;
    align-self: flex-end;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
    cursor: pointer;
}

.news {
    padding: 48px 0 32px 0;
    background: #fff;
    text-align: center;
}

.news h2 {
    margin-bottom: 32px;
    font-family: 'Epilogue';
    font-style: normal;
    font-weight: 700;
    font-size: 50px;
    line-height: 51px;
    text-align: center;
    cursor: pointer;
}

.news-list {
    display: flex;
    justify-content: center;
    gap: 20px;
    
    padding: 20px;

}

.news-item {
    height: 360px;
    background: #fafafa;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    min-width: 220px;
    text-align: left;
    width: 100%;
    
    transition: box-shadow 0.25s cubic-bezier(0.4,0,0.2,1), transform 0.25s cubic-bezier(0.4,0,0.2,1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.news-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 5px;
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}

.news-item:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    transform: translateY(-8px) scale(1.03);
    z-index: 2;
}

.news-item:hover img {
    transform: scale(1.08);
}

.news-item:active {
    transform: scale(0.97);
    transition: transform 0.12s cubic-bezier(0.4,0,0.2,1);
}

.news-title {
    margin-bottom: 5px;
    font-family: 'Asul';
    font-style: normal;
    font-weight: 700;
    font-size: 25px;
    line-height: 30px;
    color: #000000;
}

.news-meta {
    color: #000000;
    font-family: 'Alike Angular';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 25px;
}

.contact {
    display: flex;
    gap: 32px;
    padding: 0px 40px 55px 40px;
    background: #fff;
    justify-content: center;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
    min-width: 180px;
    display: flex;
    flex-direction: column;
    gap: 0;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 30px;
    color: #000000;
    cursor: pointer;

}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding-top: 25px;
    border-bottom: 1px solid #ccc;
    margin-bottom: 0;
}
.contact-info-tem:first-child{
    padding-top: none;
}



.contact-info-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-info-text b {
    color: #000;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 2px;
}

.contact-info-text span {
    color: #222;
    font-size: 14px;
    font-weight: 400;
    margin-left: 0;
}

.contact-info img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    margin-top: 15px;
   
    
}

.contact-form {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 220px;
    margin-top: 30px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px 10px;
    border: 1px solid #ccc;
    border-radius: 2px;
    font-size: 17px;
    width: 100%;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
    color: #000;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #808080;
    opacity: 1;
}

.contact-form button {
    background: #FED61D;
    border: none;
    color: #ffffff;
    padding: 10px 0;
    border-radius: 2px;
    cursor: pointer;
    margin-top: 6px;
    transition: background 0.2s, color 0.2s;
    width: 100px;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 30px;
   
}

.contact-form button:hover {
    background: black;
    color: #ffd600;
}

.contact-social {
    flex: 1;
    min-width: 180px;
    display: flex;
    flex-direction: column;
    margin-top: 90px;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 30px;
    color: #000000;
    cursor: pointer;

}

.contact-social-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 25px;
    padding-bottom: 5px;
    border-bottom: 1px solid #ccc;
    margin-bottom: 0;
}


.contact-social-item img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(87%) sepia(98%) saturate(749%) hue-rotate(353deg) brightness(104%) contrast(101%);
}

.contact-social-item span {
    color: #000;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.contact-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #e0e0e0;
    margin-right: 10px;
    vertical-align: middle;
}

.footer, .footer *, .footer-cols, .footer-col, .footer-link-text, .footer-col ul {
    background: #eeeeee !important;
    color: rgba(0, 0, 0, 0.7) !important;
}

.footer-cols {
    display: flex;
    gap: 32px;
    justify-content: center;
    padding-top: 30px;
    padding-bottom: 30px;
    cursor: pointer;
    font-family: Poppins;
}

.footer-col {
    flex: 1;
    min-width: 180px;
    margin-left: 60px;
}

.footer-col ul {
    list-style: none;
    margin-top: 10px;
}

.footer-col li {
    margin-bottom: 1px;
    font-weight: normal;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.footer-link-text {
    position: relative;
    overflow: hidden;
    display: inline-block;
}
.footer-link-text::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: black;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.40s cubic-bezier(0.4,0,0.2,1);
}
.footer-col li:hover .footer-link-text::after,
.footer-col li:focus .footer-link-text::after {
    transform: scaleX(1);
}
.footer-col li:hover .footer-link-text,
.footer-col li:focus .footer-link-text {
    text-decoration: none;
}
/* Remove underline from li itself */
.footer-col li::after {
    display: none !important;
}

.footer-col b {
    font-weight: 1000;
}

.footer-col p {
    font-weight: normal;
    margin-top: 10px;
    
}

.footer-bottom {
    font-family: Poppins;
    font-weight: 100;
    text-align: center;
    padding: 16px 0;
    font-size: 13px;
    color: white;
    background-color: black !important;
    border-top: 1px solid #e0e0e0;
    
}
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    gap: 32px;
}


/* Preloader styles */
#preloader {
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s cubic-bezier(0.4,0,0.2,1);
}
#preloader.preloader-hide {
  opacity: 0;
  pointer-events: none;
}
.preloader-content {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}
.eyeglass-shine {
  position: relative;
  display: inline-block;
  width: 180px;
  height: 180px;
}
.eyeglass-shine img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 12px;
  box-shadow: 0 4px 32px 0 rgba(0,0,0,0.08);
}
.eyeglass-shine .shine {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.7) 50%, rgba(255,255,255,0) 100%);
  transform: translateX(-100%) skewX(-20deg);
  animation: shine-move 1.2s cubic-bezier(0.4,0,0.2,1) infinite;
}
@keyframes shine-move {
  0% { transform: translateX(-100%) skewX(-20deg); }
  60% { transform: translateX(120%) skewX(-20deg); }
  100% { transform: translateX(120%) skewX(-20deg); }
}

/* Mobile dropdown styles */
.mobile-dropdown {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  background: #fff;
  z-index: 1002;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  border-bottom: 1px solid #eee;
  opacity: 0;
  transform: translateY(-16px);
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.4,0,0.2,1), transform 0.3s cubic-bezier(0.4,0,0.2,1);
}
.mobile-dropdown.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-dropdown .mobile-nav {
  flex-direction: column;
  align-items: stretch;
  padding: 0;
  margin: 0;
}
.mobile-dropdown .mobile-nav a {
  padding: 16px 20px;
  border-bottom: 1px solid #eee;
  font-size: 18px;
  color: #222;
  background: none;
  text-align: center;
  display: block;
}
.mobile-dropdown .mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-dropdown .mobile-nav a:hover {
  background: #f7f7f7;
  color: #ffd600;
}
/* Hide overlay for dropdown version */
.mobile-nav-overlay { display: none !important; }

.hamburger.active {
  display: flex !important;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0;
}
.hamburger.active span {
  display: block;
  width: auto;
  height: auto;
  background: none;
  margin: 0;
  font-size: 30px;
  line-height: 1;
}
.footer-cols-mobile {
    display: none !important;
}


@media (max-width: 1500px) {
    .hero {
        flex-direction: row;
        align-items: center;
        padding: 30px 0 0px 0;
        min-height: 350px;
        height: auto;
    }
    .hero-content {
        max-width: 50vw;
        padding-left: 40px;
        padding-right: 10px;
    }
    .hero-content h1 {
        font-size: 56px;
        line-height: 1.1;
        width: auto;
    }
    .hero-content p {
        font-size: 22px;
        line-height: 1.3;
        width: auto;
    }
    .hero-content button {
        font-size: 18px;
        width: 150px;
        padding: 8px 0;
    }
    .hero-image {
        max-width: 50vw;
        display: flex;
        align-items: flex-end;
        justify-content: center;
    }
    .hero-image img {
        max-width: 100%;
        height: auto;
        max-height: 600px;
    }
    nav{
        gap:10px
    }
    nav a{
        font-size: 17px;
    }
    .categories {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        justify-items: center;
    }
    .bestseller-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        justify-items: center;
    }
}
    
@media (max-width: 1200px) {
    .top-bar {
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        font-size: 10px;
        padding: 10px 10px;
    }
    .top-bar>span {
        width: 100%;
        text-align: center;
        padding-top: 5px;
        padding-bottom: 5px;
        padding-left: 0;
        padding-right: 0;
        font-size: 2em;
        margin-bottom: 6px;
    }
    .top-bar-links {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 10px;
        width: 100%;
        padding: 0 0 6px 0;
        margin: 0;
    }
    .top-bar-links span {
        font-size: 1.5em;
    }
    .top-bar-links img {
        width: 1.5em;
        height: 1.5em;
    }
    .top-bar-links .icon-text {
        display: none;
    }
    nav {
        display: none;
    }
    .cart {
        display: none;
    }
    .hamburger {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 36px;
        height: 36px;
        cursor: pointer;
        z-index: 1002;
        margin-left: auto;
        margin-right: 0;
        position: static;
    }
    .hamburger span {
        display: block;
        width: 24px;
        height: 3px;
        background: black;
        margin: 4px 0;
        border-radius: 2px;
        transition: all 0.3s;
    }
    .mobile-nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #fff;
        z-index: 1001;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        transition: opacity 0.3s;
    }
    .mobile-nav-overlay.active {
        display: flex;
    }
    .mobile-nav-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 18px 20px 0 20px;
        min-height: 60px;
    }
    .mobile-nav-header .logo {
        font-size: 20px;
        font-family: 'Georgia', serif;
        font-weight: bold;
        color: black;
    }
    .mobile-nav-close {
        background: none;
        border: none;
        font-size: 38px;
        color: black;
        cursor: pointer;
        line-height: 1;
        padding: 0 8px;
        margin-left: 12px;
    }
    .mobile-nav {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
        width: 100%;
        margin-top: 24px;
    }
    .mobile-nav a {
        color: black;
        font-size: 20px;
        text-decoration: none;
        font-weight: 400;
        width: 100%;
        text-align: center;
        padding: 18px 0;
        border-bottom: 1px solid #eee;
        transition: background 0.2s, color 0.2s;
        letter-spacing: 0.5px;
    }
    .mobile-nav a:last-child {
        border-bottom: none;
    }
    .mobile-nav a:hover {
        background: #f7f7f7;
        color: #ffd600;
    }
    .mobile-nav {
        min-width: 140px;
        padding: 18px 8px;
        gap: 14px;
    }
    .mobile-nav a {
        font-size: 16px;
    }
    .mobile-logo-icon {
        width: 40px;
        height: 40px;
        object-fit: contain;
        display: block;
        margin-right: 8px;
    }
    .logo {
        margin-left: 0p;
        text-align: left;
        flex: 0 0 auto;
    }
    .hero {
        flex-direction: row;
        align-items: center;
        padding-top: 10px;
        padding-right: 50px;
        min-height: 300px;
        height: auto;
    }
    .hero-content {
        max-width: 60%;
        padding-left: 40px;
        width: 100%;
    }
    .hero-content h1 {
        font-size: 40px;
        line-height: 1.1;
        width: auto;
    }
    .hero-content p {
        font-size: 24px;
        line-height: 1.3;
        width: auto;
    }
    .hero-content button {
        font-size: 18px;
        padding: 10px 0px;
    }
    .hero-image {
        max-width: 40%;
        
        object-fit: cover;
        border-radius: 12px 12px 0 0;
        display: block;
    }
    .hero-image img {
        height: auto;
        max-height: 320px;
        border-radius: 0;
    }
    .categories {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        padding: 32px 20px;
    }
    .category-item {
        width: 120px;
        height: 120px;
    }
    .category-label {
        padding-top: 10px;
        min-width: unset;
        max-width: 150px;
        font-size: 14px;
        text-align: center;
        margin: 0 auto;
        display: block;
    }
    .logo {
        margin-left: 0;
        text-align: left;
        flex: 0 0 auto;
    }
    .bestseller-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        justify-items: center;
    }
    .about {
        padding: 18px 2px 10px 2px;
        max-width: 98vw;
    }
    .about p {
        font-size: 20px;
        padding:0 20px 20px 20px;
        text-align: justify;
    }
    .promo-row {
        display: flex;
        flex-direction: column;
        gap: 18px;
        align-items: stretch;
        padding: 0 0 16px 0;
    }
    .promo {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        background: #f5f5f5;
        border-radius: 18px;
        padding: 18px 12px 12px 12px;
        min-height: 220px;
        position: relative;
        width: 100%;
        box-sizing: border-box;
    }
    .promo-text {
        font-size: 25px;
        margin-top: 0px;
        font-weight: 500;
        text-align: left;
        width: 100%;
    }
    .promo button {
        font-size: 17px;
        padding: 7px 18px;
        margin-bottom: 100px;
        margin-top: 0;
        width: auto;
        align-self: flex-start;
    }
    .promo img {
        width: 100%;
        max-width: 220px;
        height: auto;
        object-fit: contain;
        display: block;
        margin: 10px 0 0 0;
        border-radius: 12px;
    }
    .news-item{
        height: 450px;
        
    }
    .news-item img {
        width: 100%;
        height: 250px;
        object-fit:fill;
        border-radius: 8px;
        margin-bottom: 5px;
        transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    }
    .footer-cols {
        display: none !important;
    }
    .footer-cols-mobile {
        display: block !important;
        width: 100%;
    }
    .footer-col-mobile {
        width: 100%;
        border:1px #cccccc solid ;
        background: #eeeeee;
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    .footer-accordion-header {
        width: 100%;
        background: none;
        border: none;
        font-size: 18px;
        font-weight: bold;
        text-align: left;
        padding: 16px 12px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        outline: none;
    }
    .footer-accordion-arrow {
        font-size: 22px;
        transition: transform 0.2s;
    }
    .footer-accordion-arrow.active {
        transform: rotate(180deg);
    }
    .footer-accordion-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s cubic-bezier(0.4,0,0.2,1);
        background-color: #eeeeee;
        padding: 0 12px;
    }
    .footer-accordion-content.active {
        max-height: 400px;
        padding-bottom: 12px;
        background-color: #eeeeee;
    }
    .contact-info,
    .contact-form,
    .contact-social,
    .footer-col {
        min-width: unset;
        width: 100%;
        max-width: 320px;
    }
.footer-link-text {
        position: relative;
        overflow: hidden;
        display: inline-block;
        font-family: 'Alike Angular', serif;
        font-weight: 400;
        font-size: 16px;
        color: #222;
        text-decoration: none;
        transition: none;
    }
    .footer-link-text::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 2px;
        background: black;
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.40s cubic-bezier(0.4,0,0.2,1);
    }
    .footer-col-mobile li:hover .footer-link-text::after,
    .footer-col-mobile li:focus .footer-link-text::after {
        transform: scaleX(1);
    }
    .footer-col-mobile li:hover .footer-link-text,
    .footer-col-mobile li:focus .footer-link-text {
        text-decoration: none;
    }
    .footer-col-mobile li::after {
        display: none !important;
    }
    
}
@media (max-width: 600px) {
    .hero {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        padding: 20px 0 0 5px;
        min-height: 150px;
        height: auto;
        position: relative;
        flex-wrap: nowrap;
    }
    .hero-content {
        flex: 1 1 0;
        max-width: 54vw;
        color: #fff;
        padding-left: 10px;
        padding-right: 4px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        text-align: left;
        min-width: 0;
    }
    .hero-content h1,
    .hero-content p {
        text-align: left;
    }
    .hero-image {
        flex: 1 1 0;
        display: flex;
        align-items: flex-end;
        justify-content: center;
        min-width: 0;
        max-width: 46vw;
        height: auto;
    }
    .hero-image img {
        width: 100%;
        height: 500px;
        object-fit: cover;
        border-radius: 12px 12px 0 0;
        display: block;
    }
    header {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 8px 8px 0 8px;
    }
    .logo {
        margin-left: 0;
        text-align: left;
        flex: 0 0 auto;
    }
    .hamburger {
        display: flex !important;
        margin-left: auto;
        margin-right: 0;
        position: static;
    }
    nav {
        display: none;
    }
    .cart {
        display: none;
    }
    .top-bar {
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        font-size: 10px;
        padding: 10px 10px;
    }
    .top-bar>span {
        width: 100%;
        text-align: center;
        padding-top: 5px;
        padding-bottom: 5px;
        padding-left: 0;
        padding-right: 0;
        font-size: 3.5vw;
        margin-bottom: 6px;
    }
    .top-bar-links {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 10px;
        width: 100%;
        padding: 0 0 6px 0;
        margin: 0;
        
    }
    .top-bar-links .icon-text {
        display: none;
    }
    .categories {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 16px 8px;
        justify-items: stretch;
        align-items: stretch;
        padding: 16px 0;
    }
    .categories > div {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        min-height: 160px;
        height: 100%;
    }
    .category-item {
        width: 100px;
        height: 100px;
        background: #f5f5f5;
        border-radius: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
        box-shadow: 0 2px 8px rgba(0,0,0,0.04);
        padding: 0;
    }
    .category-item img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
        border: none;
    }
    .category-label {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 38px;
        width: 100%;
        text-align: center;
        font-family: 'Alike Angular', serif;
        font-size: 14px;
        margin-top: 8px;
        margin-bottom: 0;
    }
    .bestseller-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px 8px;
        justify-items: center;
        align-items: start;
        padding: 8px 0;
    }
    .bestseller-product {
        width: 190px;
        margin: 0;
    }
    .bestseller-item {
        width: 150px;
        height: 150px;
        min-width: unset;
        min-height: unset;
        max-width: unset;
        max-height: unset;
    }
    .bestseller-item img {
        width: 110px;
        height: 110px;
        object-fit: contain;
    }
    .about {
        padding: 18px 2px 10px 2px;
        max-width: 98vw;
    }
    .about p {
        font-size: 16px;
        padding:0 20px 20px 20px;
    }
    .contact {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .contact-form {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    .contact-form input,
    .contact-form textarea {
        width: 100%;
    }
    .contact-form button {
        width: 100%;
        margin-bottom: 18px;
        text-align: center;
    }
    .contact-social {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 18px;
        margin-top: 18px;
    }
    .contact-social-item {
        border: none;
        padding: 0;
    }
    .contact-social-item img {
        width: 36px;
        height: 36px;
        display: block;
    }
    .footer-cols {
        display: none !important;
    }
    .footer-cols-mobile {
        display: block !important;
        width: 100%;
    }
    .footer-col-mobile {
        width: 100%;
        border:1px #cccccc solid ;
        background: #eeeeee;
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    .footer-accordion-header {
        width: 100%;
        background: none;
        border: none;
        font-size: 18px;
        font-weight: bold;
        text-align: left;
        padding: 16px 12px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        outline: none;
    }
    .footer-accordion-arrow {
        font-size: 22px;
        transition: transform 0.2s;
    }
    .footer-accordion-arrow.active {
        transform: rotate(180deg);
    }
    .footer-accordion-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s cubic-bezier(0.4,0,0.2,1);
        background-color: #eeeeee;
        padding: 0 12px;
    }
    .footer-accordion-content.active {
        max-height: 400px;
        padding-bottom: 12px;
        background-color: #eeeeee;
    }
    .contact-info,
    .contact-form,
    .contact-social,
    .footer-col {
        min-width: unset;
        width: 100%;
        max-width: 320px;
    }
    .contact-form input,
    .contact-form textarea {
        font-size: 13px;
    }
    .contact-form button {
        width: 100%;
        margin-bottom: 18px;
    }
    .contact-social {
        margin-top: 18px;
    }
    .contact-info-item,
    .contact-social-item {
        padding: 10px 0;
    }
    .footer-bottom {
        font-size: 10px;
        padding: 8px 0;
    }
    .top-bar-links span {
        font-size: 1.3em;
    }
    .top-bar-links img {
        width: 1.2em;
        height: 1.2em;
    }
    .hero-content h1 {
        margin-bottom: 8px;
        font-size: 22px;
        line-height: 1.15;
        max-width: 100%;
        word-break: break-word;
        padding-top: 5px;
    }
    .hero-content p {
        margin-bottom: 10px;
        font-size: 13px;
        line-height: 1.25;
        max-width: 100%;
        word-break: break-word;
    }
    .hero-content button {
        width: auto;
        max-width: none;
        display: inline-block;
        text-align: left;
        margin-left: 0;
        margin-right: 0;
        box-sizing: border-box;
        font-size: 12px;
        padding: 4px 10px;
    }
    .hero-image img {
        height: 150px;
        max-width: 100%;
        width: auto;
    }
    .bestseller-title {
        font-size: 18px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        text-align: center;
        width: 100%;
        display: block;
    }
    .promo-row {
        display: flex;
        flex-direction: column;
        gap: 18px;
        align-items: stretch;
        padding: 0 0 16px 0;
    }
    .promo {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        background: #f5f5f5;
        border-radius: 18px;
        padding: 18px 12px 12px 12px;
        min-height: 220px;
        position: relative;
        width: 100%;
        box-sizing: border-box;
    }
    .promo-text {
        font-size: 12px;
        margin-top: 0px;
        font-weight: 500;
        text-align: left;
        width: 100%;
    }
    .promo button {
        font-size: 14px;
        padding: 7px 18px;
        margin-bottom: 100px;
        margin-top: 0;
        width: auto;
        align-self: flex-start;
    }
    .promo img {
        width: 100%;
        max-width: 220px;
        height: auto;
        object-fit: contain;
        display: block;
        margin: 10px 0 0 0;
        border-radius: 12px;
    }
    .news-list {
        display: flex;
        flex-direction: column;
        gap: 16px;
        padding: 0 8px;
        align-items: center;
    }
    .news-item {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    .contact-social-item span {
        display: none;
        margin-top: 5px;
        margin-bottom: 20px;
    }
    .footer-link-text {
        position: relative;
        overflow: hidden;
        display: inline-block;
        font-family: 'Alike Angular', serif;
        font-weight: 400;
        font-size: 16px;
        color: #222;
        text-decoration: none;
        transition: none;
    }
    .footer-link-text::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 2px;
        background: black;
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.40s cubic-bezier(0.4,0,0.2,1);
    }
    .footer-col-mobile li:hover .footer-link-text::after,
    .footer-col-mobile li:focus .footer-link-text::after {
        transform: scaleX(1);
    }
    .footer-col-mobile li:hover .footer-link-text,
    .footer-col-mobile li:focus .footer-link-text {
        text-decoration: none;
    }
    .footer-col-mobile li::after {
        display: none !important;
    }

    .hamburger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 36px;
        height: 36px;
        cursor: pointer;
        z-index: 1002;
    }

    .hamburger span {
        display: block;
        width: 24px;
        height: 3px;
        background: black;
        margin: 4px 0;
        border-radius: 2px;
        transition: all 0.3s;
    }

    .mobile-nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #fff;
        z-index: 1001;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        transition: opacity 0.3s;
    }

    .mobile-nav-overlay.active {
        display: flex;
    }

    .mobile-nav-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 18px 20px 0 20px;
        min-height: 60px;
    }

    .mobile-nav-header .logo {
        font-size: 20px;
        font-family: 'Georgia', serif;
        font-weight: bold;
        color: black;
    }

    .mobile-nav-close {
        background: none;
        border: none;
        font-size: 38px;
        color: black;
        cursor: pointer;
        line-height: 1;
        padding: 0 8px;
        margin-left: 12px;
    }

    .mobile-nav {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
        width: 100%;
        margin-top: 24px;
    }

    .mobile-nav a {
        color: black;
        font-size: 20px;
        text-decoration: none;
        font-weight: 400;
        width: 100%;
        text-align: center;
        padding: 18px 0;
        border-bottom: 1px solid #eee;
        transition: background 0.2s, color 0.2s;
        letter-spacing: 0.5px;
    }

    .mobile-nav a:last-child {
        border-bottom: none;
    }

    .mobile-nav a:hover {
        background: #f7f7f7;
        color: #ffd600;
    }
    .mobile-nav {
        min-width: 140px;
        padding: 18px 8px;
        gap: 14px;
    }

    .mobile-nav a {
        font-size: 16px;
    }

    .mobile-logo-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: block;
    margin-right: 8px;
    }

    /* Fade-in on scroll animation */
    .fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
    }
    .fade-in.visible {
    opacity: 1;
    transform: none;
    }
    
    
}

a button {
  text-decoration: none !important;
}
a:link, a:visited, a:hover, a:active {
  text-decoration: none;
}

/* --- Search Bar Animation Styles --- */
.search-bar-component {
  display: flex;
  align-items: center;
  position: relative;
  transition: width 0.3s cubic-bezier(0.4,0,0.2,1);
  margin-right: 40px;
}
.search-bar-component .icon-search {
  z-index: 2;
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  margin-right: 0.2em;
}
.search-bar-component .search-input {
  width: 0;
  opacity: 0;
  border: none;
  outline: none;
  font-size: 1em;
  font-family: 'Poppins', Arial, sans-serif;
  background: #fff;
  color: #222;
  border-radius: 2em;
  padding: 0.5em 1em;
  margin-left: -2.2em;
  box-shadow: 0 1px 6px rgba(0,0,0,0.07);
  transition: width 0.5s cubic-bezier(0.4,0,0.2,1), opacity 0.5s, margin-left 0.5s;
  pointer-events: none;
  border: 1px solid black;
}
.search-bar-component.active .icon-search {
  transform: translateX(-10px);
}
.search-bar-component.active .search-input {
  width: 110px;
  opacity: 1;
  margin-left: 0.3em;
  pointer-events: auto;
}
@media (max-width: 600px) {
  .search-bar-component.active .search-input {
    width: 100px;
  }
}
.search-bar-component .search-label {
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 1em;
  color: #222;
  margin-left: 0.2em;
  margin-right: 0.5em;
  letter-spacing: 0.05em;
  transition: opacity 0.5s, width 0.5s, color 0.2s;
  opacity: 1;
  white-space: nowrap;
  pointer-events: auto;
  cursor: pointer;
  position: relative;
}
.search-bar-component .search-label::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: black;
  z-index: 2;
  pointer-events: none;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.30s cubic-bezier(0.4,0,0.2,1);
}
.search-bar-component:hover .search-label::after,
.search-bar-component:focus-within .search-label::after {
  transform: scaleX(1);
  background: black;
}
.search-bar-component:hover .search-label,
.search-bar-component:focus-within .search-label {
  color: #FED61D;
}
.search-bar-component.active .search-label {
  opacity: 0 !important;
  width: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
  pointer-events: none;
}

@media (max-width: 1200px) {
  .search-bar-component .search-label {
    display: none !important;
  }
  .search-bar-component .icon-search {
    margin-right: 0.1em;
  }
  .search-bar-component {
    margin-right: 20px;
  }
}
@media (max-width: 600px) {
  .search-bar-component .search-label {
    display: none !important;
  }
  .search-bar-component .icon-search {
    margin-right: 0.1em;
  }
  .search-bar-component {
    margin-right: 20px;
    margin-left: 5px;
  }
}