    :root{
    --primary-dark: black;
    --hamburger-color: black;
    --navy: #a02424;
    --light-gray: #f5f5f8;
    --border-gray: #DDDDDD8C;
    --text-dark: #1a1a1a;
    --text-light: #5a5a6e;
    --accent: black;
    --hover: rgb(199, 82, 80);
    --shadow-sm: 0 3px 8px rgba(0, 0, 0, 0.08),0 10px 20px rgba(0,0,0,0.12);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 48px rgba(0, 0, 0, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    font-weight: 400;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from { 
        opacity: 0;
    }
    to { 
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from { 
        opacity: 0;
        transform: translateY(30px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOut {
    from { 
        transform: translateX(0); 
        opacity: 1; 
    }
    to { 
        transform: translateX(400px); 
        opacity: 0; 
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    from { 
        opacity: 0;
        transform: translateY(-10px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    50% { transform: scale(3.5); }
}

.fade-in {
    opacity: 0;
    animation: fadeIn 0.6s ease-out forwards;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
}

.fade-in-up.animated {
    animation: fadeInUp 0.6s ease-out forwards;
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-30px);
}

.slide-in-left.animated {
    animation: slideInLeft 0.6s ease-out forwards;
}

.slide-in-right {
    opacity: 0;
    transform: translateX(30px);
}

.slide-in-right.animated {
    animation: slideInRight 0.6s ease-out forwards;
}

/* ===== HEADER ===== */
.header {
    background: whitesmoke;
    border-bottom: 1px solid var(--border-gray);
    position: sticky;
    top: 0;
    transition: all .5s ease;
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

.header-top {
    display: flex;
    justify-content: space-between;
    place-items: center;
    width: 100%;
    padding: 5px 20px;
    gap: 30px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 5px;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: translateY(-3px);
}

/*.logo i {/
    font-size: 1.6rem;
    color: var(--navy);
    font-weight: 600;
}*/

.logo h1 {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--primary-dark);
    letter-spacing: 1.5px;
}

.hamburger {
    width: 28px;
    height: 20px;
    display: flex;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    z-index: 1001;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: var(--hamburger-color);
    border-radius: 1px;
    transition: all 0.3s ease;
}
body {
  scrollbar-width: none; /* for Firefox */
  -ms-overflow-style: none; /* for Internet Explorer & Edge */
}

body::-webkit-scrollbar {
  display: none; /* for Chrome, Safari, Opera */
}

.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.header-actions {
    display: flex;
    gap: 24px;
    align-items: center;
}

.search-container {
    display: flex;
    align-items: center;
    background: var(--light-gray);
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    padding: 10px 16px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.search-container:focus-within {
    border-color: var(--navy);
    background: white;
    box-shadow: var(--shadow-md);
}

.search-input {
    background: transparent;
    border: none;
    color: var(--text-dark);
    width: 200px;
    outline: none;
    font-size: 0.9rem;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
}

.search-input::placeholder {
    color: var(--text-light);
    font-weight: 400;
}

.search-btn {
    background: none;
    border: none;
    color: var(--navy);
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 0 8px;
}

.search-btn:hover {
    color: var(--hover);
    transform: scale(1.1);
}

.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid var(--border-gray);
    max-height: 400px;
    overflow-y: auto;
    display: none;
    z-index: 999;
    box-shadow: var(--shadow-lg);
    margin-top: 8px;
    border-radius: 8px;
}

.search-results.active {
    display: block;
    z-index: 1000;
    animation: slideDown 0.3s ease-out;
}

.search-result-item {
    padding: 14px 20px;
    border-bottom: 1px solid var(--border-gray);
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
}

.search-result-item:hover {
    background: var(--light-gray);
    color: var(--navy);
    padding-left: 24px;
}

.cart-icon {
    position: relative;
    cursor: pointer;
    font-size: 1.2rem;
    z-index: 2;
    color: var(--navy);
    transition: all 0.3s ease;
}

.cart-icon:hover {
    color: var(--hover);
    transform: scale(1.15);
}
.cart-count {
  position: absolute;
  top: -13px;
  right: -5px;
  background: #FF3B30D9;
  z-index: 0;
  color: #fff;
  border-radius: 50%;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
  animation: pulse 0.25s ease;
}
/*
.nav-menu {
    displ
    justify-content: center;
    background: var(--light-gray);
    padding: 16px 0;
    border-top: 1px solid var(--border-gray);
    box-shadow: var(--shadow-sm);
    animation: slideDown 0.3s ease-out;
}

.nav-menu.active {
    display: flex;
}
.nav-menu.show{
    z-index: -1;
    opacity: 0;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 36px;
    flex-wrap: wrap;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}
/*
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: none;
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--navy);
}

.nav-menu a:hover::after {
    width: 90%;
}
*/
/* ===== HERO SECTION ===== */
.hero {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 10px;
    text-align: center;
    min-height: 50vh;
    display: flex;
    border-radius : 8px;
    border-top-right-radius: 0px;
    border-top-left-radius: 0px ;
    place-self: center;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  /*  background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  */
    pointer-events: none;
}
.hero-text{
    text-align: center;
    width: auto;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /*background: rgba(0, 0, 0, 0.3);*/
}

.hero-content {
    border-radius: 8px;
    height: auto;
    width: 100%;
    padding: 10px 5px;
    background: rgba(0, 0, 0, 0);
    text-align: start;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: clamp(2.3rem,calc( 2vw + 1.3rem), 2.8rem);
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(7, 4, 4, 0.2);
    font-family: "Montserrat", sans-serif;
    max-width: 80%;
    line-height: 1.1;
}
/*      animation: glowAnimation 1.5s infinite alternate;*/
.hero-content p {
    width: auto;
    font-size: clamp(.8rem, 2.5vw, 1.8rem);
  margin: 0 0 25px 0;
    color: #DBDBDBD9;
    
    max-width: 60%;
    font-weight: 100;
}

.cta-btn {
    padding: 14px 40px;
    background: rgba(255, 255, 255, 0.14);
    color: var(--navy);
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #A02424A8;
}

.cta-btn:hover {
    background: rgba(0, 0, 0, 0.16);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

/* ===== FEATURED SECTION ===== */
.featured {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    max-width: 1400px;
    margin: 50px auto 80px;
    padding: 0 40px;
    position: relative;
    z-index: 10;
}

.featured-item {
    background: transparent;
    padding: 35px 25px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.featured-item:hover {
    border-color: var(--navy);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.featured-item i {
    font-size: 2.6rem;
    color: var(--navy);
    margin-bottom: 16px;
}

.featured-item h3 {
    font-size: 1.05rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.featured-item p {
    color: var(--text-light);
    font-family: "Inter", sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
}

/* ===== PRODUCTS SECTION ===== */
.products-section {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 5px;
    min-width: auto;
    display: flex;
    margin: auto;
    justify-content: space-between;
    place-items: center;
    
}
.section-header p a {
    text-decoration: none;
    color : rgba(0, 0, 0, 0.53);
    background : var(--navy);
    font-size: clamp( .9rem, 3vw, 1.2rem );
}
.section-header h2 {
    font-size: clamp(1.2rem, 3vw ,1.4rem);
    
    font-weight: 400;
    margin: auto 10px 3px;
    color: var(--primary-dark);
}

.section-header p {
    font-size: 0.95rem;
    text-align: start;
    
    margin: auto 10px 3px;
    color: var(--text-light);
    font-weight: 400;
}
.section-header p a{
    color: rgba(255, 255, 255, 1);
    border-radius: .5rem;
    padding: 4px 8px;
    font-weight: 500;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
.featured-category{
    margin: 5px auto;
    width: 100%;
}
.featured-category h3{
    font-weight: 500;
    text-align: center;
    margin: auto ;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(1.8rem,3vw+ .3rem, 2rem);
}
.products-grid {
    display: flex;
    flex-wrap: wrap;
    
    width: 100%;
    
    justify-content:  center;
    max-width: 1200px;
    margin: auto;
    /*
   grid-template-columns: repeat(auto-fit,minmax(180px, 1fr));*/
  gap: 6px;
}

.product-card {
    background: rgba(245, 245, 245, 0.678);
    border: 1px solid rgba(0, 0, 0, 0.22);
    overflow: hidden;
    transition: all 0.3s ease;
    display: grid;
    border-radius: 8px;
    text-align: start;
    grid-template-rows: auto;
    cursor: pointer;
    height: auto;
    box-shadow: var(--shadow-sm);
    flex: 1 0 40%;
}

.product-card:hover {
    border-color: lightgray;
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.product-image {
    background: whitesmoke;
    display: flex;
    height: 200px;
    align-items: center;
    justify-content: center;
    font-size: 4.5rem;
    object-fit: contain;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    width: 100%;
    transform: scale(.95);
}
.product-card:hover .product-image {
    background: transparent;
    transform: scale(1.08);
}

.product-info {
    height: auto;
    padding: 5px;
    display: flex;
    flex-direction: column;
   
}

.product-category {
    color: var(--navy);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 600;
    display: none;
    margin-bottom: 12px;
}

.product-card h3 {
    font-size: clamp(1.2rem,calc(3vw+.3rem),1.4rem);
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.1;
}

.product-description {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 15px;
    height: auto;
    display: flex;
    align-items: center;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    font-weight: 400;
}

.product-price {
    font-size: clamp(.9rem, 2vw, 1.3rem);
    font-weight: 300;
    text-wrap: wrap;
    word-wrap: wrap;
    color: var(--navy);
}

.add-to-cart {
    width: 100%;
    padding: 8px;
    background: transparent;
    color: black;
    border: 1px solid rgba(0, 0, 0, 0.57);
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.5s ease;
    font-size: 0.9rem;
    box-shadow: var(--shadow-md);
    font-family:  'Inter', sans-serif;
    color: black;
    margin-top: auto;
}

.add-to-cart:hover {
    background: rgba(0, 0, 0, 0.81);
    border: 1px solid rgba(165, 64, 64, 0.76);
    color: white;
    transform: scale(0.5);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.add-to-cart:active {
  /*  background-color: transparent;*/
    transform: translateY(0);
    color: black;
    box-shadow: var(--shadow-sm);
}

/* ===== ABOUT SECTION ===== */
.about {
    background: transparent;
    padding: 100px 40px;
    border-radius: 12px;
    max-width: 1400px;
    margin: 0 auto 100px;
    /*box-shadow: var(--shadow-md);*/
    border: 1px solid var(--border-gray);
}

.about-content h2 {
    font-size: clamp(1.3rem, calc(2vw + 1rem),2.2rem);
    font-weight: 700;
    margin:  10px 1.5rem 10px;
    color: var(--primary-dark);
}

.about-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 48px;
    line-height: 1.8;
    font-weight: 400;
    max-width: 600px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 5px;
}

.stat {
    background: var(--light-gray);
    padding: 16px 24px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-gray);
}

.stat:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.stat h3 {
    font-size: clamp(1.6rem,1.5rem,2.2rem);
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
    color: var(--navy);
    margin-bottom: 8px;
}

.stat p {
    font-family: "Inter",sans-serif;
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 500;
}

/* ===== CONTACT SECTION ===== */
.contact {
    max-width: 1400px;
    margin: 0 auto 100px;
    padding: 0 40px;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 50px;
}

.contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 10px;
    border: 1px solid var(--border-gray);
    box-shadow: var(--shadow-md);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group textarea {
    padding: 14px 16px;
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    background: white;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    font-weight: 400;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--navy);
    box-shadow: var(--shadow-md);
}

.submit-btn {
    padding: 14px;
    background: var(--navy);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    box-shadow: var(--shadow-md);
}

.submit-btn:hover {
    background: var(--hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
    align-items: center;
    justify-content: center;
    gap: 28px;
}
    

.contact-item {
    background: white;
    padding: 18px;
    border-radius: 10px;
    border: 1px solid var(--border-gray);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-item i {
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 16px;
    display: block;
}

.contact-item h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.contact-item p {
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 400;
    line-height: 1.6;
}

/* ===== FOOTER ===== */
.footer {
    background-color: rgba(0, 0, 0, 0.93);
   
    color: white;
    padding: 60px 40px;
    margin: auto 0 0 0 ; 
    border-top: 1px solid var(--border-gray);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-content p {
    font-size: 0.8rem;
    opacity: 0.8;
    font-weight: 400;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links i{
    color: white;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-links i:hover {
    color: var(--navy);
    transform: translateY(-3px);
}

/* ===== CART MODAL ===== */
.cart-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    justify-content: flex-end;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.cart-modal.active {
    display: flex;
}

.modal-content {
    background: white;
    width: 100%;
    max-width: 450px;
    height: 100%;
    display: flex;
    flex-direction: column;
    border-left: 1px solid var(--border-gray);
    animation: slideFromRight 0.3s ease;
    box-shadow: var(--shadow-xl);
}

@keyframes slideFromRight {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.6rem;
    cursor: pointer;
    color: var(--text-dark);
    transition: all 0.3s ease;
    z-index: 2001;
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-weight: 300;
}

.close-modal:hover {
    color: var(--navy);
    background: var(--light-gray);
    transform: rotate(90deg);
}

.modal-content h2 {
    font-size: 1.4rem;
    font-weight: 400;
    padding: 20px;
    border-bottom: 1px solid var(--border-gray);
    box-shadow: var(--shadow-sm);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: var(--light-gray);
    border-radius: 8px;
    margin-bottom: 12px;
    border: 1px solid var(--border-gray);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    font-weight: 500;
}

.cart-item:hover {
    box-shadow: var(--shadow-md);
}

.cart-summary {
    border-top: 1px solid var(--border-gray);
    padding: 20px;
    background: var(--light-gray);
    box-shadow: inset 0 4px 12px rgba(0, 0, 0, 0.05);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    color: var(--text-light);
    font-weight: 500;
}

.summary-row.total {
    font-weight: 700;
    color: var(--navy);
    font-size: 1.15rem;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border-gray);
}

.checkout-btn,
.continue-btn {
    padding: 12px;
    background: var(--navy);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 10px 20px;
    font-size: 0.85rem;
    box-shadow: var(--shadow-md);
    font-family: 'Inter', sans-serif;
}

.checkout-btn:hover {
    background: var(--hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.checkout-btn:active {
    transform: translateY(0);
    box-shadow: var(--shadow-sm);
}

.continue-btn {
    background: transparent;
    border: 2px solid var(--navy);
    color: var(--navy);
    box-shadow: none;
}

.continue-btn:hover {
    background: var(--light-gray);
    box-shadow: var(--shadow-md);
}

/* ===== NOTIFICATIONS ===== */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--navy);
    color: white;
    padding: 16px 28px;
    border-radius: 8px;
    z-index: 3000;
    animation: slideInNotif 0.3s ease-out;
    font-weight: 500;
    box-shadow: var(--shadow-xl);
    font-size: 0.9rem;
}

@keyframes slideInNotif {
    from { 
        transform: translateX(400px); 
        opacity: 0; 
    }
    to { 
        transform: translateX(0); 
        opacity: 1; 
    }
}

/*the responsive of my website*/
@media (max-width: 768px) {
       
.category-carousel{
    overflow-x: auto;
    width: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 6px;
}
    .search-input {
        width: 100px;
    }

    .hero {
        padding: 40px 20px;
        min-height: 90%;
    }
    .product-image {
        height: 180px;
    }

    .section-header h2 {
        font-size: clamp(1.2rem,3vw, 1.4rem);
    }    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
    }

    .products-section {
        padding: 0 20px;
    }
}
    .logo h1 {
        font-size: 0.9rem;
        color: var(--navy);
        letter-spacing: 1px;
    }


@media (max-width: 480px) {
    .header-top {
        gap: 5px;
        padding: 5px;
    }
    .logo h1 {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }

    .search-container {
        display: flex;
        background: transparent;
        justify-content: center;
        width: 5px;
        margin: 0;
    }
    .search-input{
        margin: 0;
        display: none;
    }
    .search-btn{
        margin: 0;
        background: transparent;
    }
    .logo{
        margin: 0;
    }
    .logoword p{
        text-align: center; 
    }
    .header{
        justify-content: center;
        gap: 0;
    }
    .hero {
        padding: 40px 16px;
        margin-bottom: 0;
    }
    .modal-content {
        max-width: 100%;
    }

    .about {
        padding: 40px 20px;
    }

    .products-section {
        padding: 0 16px;
        margin-bottom: 60px;
    }

    .contact-form-wrapper {
        padding: 20px;
    }

    .contact-item {
        padding: 10px;
    }

    .footer-content {
        text-align: center;
    }
}
.hero{
    background-position: center;
    background-size: cover;
}
@media screen and (max-width: 481px) {
    

.contact{
    width: 100%;
    display: grid;
    place-content: center;
    justify-content: center;

}
}

.whyus-content h2 {
    font-size: clamp(1.6rem,calc(5vw+.3rem), 1.8rem);
    font-weight: 700;
    text-align: center;
    margin : auto 10px 1rem 10px;
    color: var(--primary-dark);
}
@media  screen and (min-width : 768px) {
    .hamburger span{
        background-color: black;
    }
    
}
header .logo h1{
    margin: 0;
}
header .logoword{
    font-size: clamp(.7rem,calc( 2vw + .3rem), .8rem);
    color:rgba(0, 0, 0, 0.74);
    margin: 0;

}

.logo p{
    text-align: center;
}
header{
    height: auto;
    padding-bottom: 0;
}
.logo img{
    border-radius: 100%;
    height: clamp(70px, calc(2vw+10px),80px);
    width: clamp(70px, calc(2vw+10px),80px);
}
/*
.header{
    display: flex;>
    gap: 0;
    justify-content: space-between;
    flex-wrap: wrap;
}*/
@media screen and(max-width: 480px) {
    .logoword p{
        text-align: center;
    }

}
.header .logoword p{
    font-style: italic;
}
@media screen and (min-width: 992px) {
    .hamburger{
        display: none;
    }
 .header{
    display: flex;
    justify-content: space-between;
}  
.header .logo img{
    width: 100px;
    height: 100px;

} 
.search-container .search-btn{
    border-left: 1px solid red;

}
.header-top{
    display: flex;
    justify-content: space-between;
}
.search-container{

    justify-content: space-between;
    align-self: center;
    width: clamp(350px, calc(10vw + 50px), 500px);
}
.search-input{
    width: auto;
}
}
.header .logo h1{
    font-weight: 900;
    font-family: "Montserrat", sans-serif;
}


body p{
    font-family: "Inter", sans-serif;
}
.header-top{
    align-items: center;
    display: flex;
    justify-content: space-between;
}
.about h2{
    font-weight: 700;
    margin: auto 10px;
    font-family: "Montserrat", sans-serif;
}
.about p{
    font-weight: 500;
    font-style: italic;
    font-family: "Inter", sans-serif;
}
.hero h1{
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
}
.hero p{
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-style: italic;
}
.cta-btn{
    font-family: "Montserrat", sans-serif;
}
.product-card h3{
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
}
.product-description{
    font-family: "Inter", sans-serif;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: 400;
    font-style: italic;
}
.products-section h2{
    font-family: "Montserrat", sans-serif;
    margin: auto 10px;
    font-weight: 500;
}
.featured-item h3{
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
}
.whyus-content h2{
    font-size: clamp(1.3rem, calc(2vw + 1rem),2.2rem);
    margin: auto ;
    font-family: "Montserrat", sans-serif;
}


.contact h2{
    font-family: "Montserrat",sans-serif;
}
.contact p{
    font-family: "Inter",sans-serif;
}
@media  screen and (min-width: 481px) {
    .hamburger{
        display: none;
    }/*
    .header{
        display: flex;
        gap: 2em;
        background-color: #00000066;
        align-items: center;
        justify-content: space-between;
    }*/
    /*
    .nav-menu{
        display: flex;
        flex-direction: row;
    }
    
.nav-menu ul{
    display: flex;
    flex-direction: row;
    gap: 30px;
    place-items: center;
}*/
}
@media screen and (min-width: 768px) {
    
        .header{
            gap: 2em;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    /*
    .nav-menu{
        
        display: flex;
   justify-self: center;
    width: 100%;
        flex-direction: row;
    }
    
.nav-menu ul li a{
    color: black;
    display: flex;
    flex-direction: row;
    gap: 0px;
}
       
.nav-menu ul li {

    gap: 0px;
}
.nav-menu ul{
    color: white;
    padding-right: 10px;
    display: flex;
    flex-direction: row;
    gap: 1px;
}*/
}
@media screen and(min-width: 996px) and (max-width: 1440px) {
/*
     .nav-menu{
        
        display: flex;
        position: absolute;
        top: 80%;
   justify-self: center;
   color: black;
        flex-direction: row;
    }  */
}

@media screen and(max-width: 480px) {
.header {
    background: whitesmoke;
}

.contact-container{
   max-width: 300px;
}
}@media screen and (min-width: 481px){
.products-section h2{
    margin-top: 10px;
}}

.featured-products{
    margin-top: 5px;
}
.featured-products h2{
    font-weight: 500;
    margin: auto 10px 10px 10px;
    color: var(--primary-dark);
    text-align: center;
    font-size: clamp(1.4rem, 3vw+ .2rem, 2rem);
    font-family: "Montserrat", sans-serif;
}
.slider::-webkit-scrollbar {
    display: none;
}
.category-item:hover img{
    object-fit: contain;
    transform: scale(1.08);
}
.category-item{
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .4s ease;
    flex: 1 1 100%;
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    position: relative;
}
 .category-img {
        width: clamp(180px,calc(2vw + 20px),240px);
    height: clamp(180px,calc(2vw + 20px),240px);
 }
 .category-img img {
    transition: all .4s ease;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.category-item .info a{
    color: black;
    font-weight: 400;
    text-decoration: none;
    font-size: clamp(1.6rem,calc(2vw + .6rem),2.2rem);
    text-shadow: 0 2px 4px white;
}
.category-item .info{
    position: absolute;
    top: 50%;
    color: white;
    left: 50%;
    transform: translate(-50%,-50%);
}

.slider {
    scroll-behavior: smooth;
    display: flex;
    gap: 6px;
  scroll-snap-type: x mandatory;
  overscroll-behavior-x: contain;
    width: 100%;
    overflow-x: auto;
}

.slides {
    scroll-snap-type: mandatory ;
    scroll-snap-align: center;
    flex-basis: 90%;
    max-width: 1200px ;
    padding: 10px;
    min-width: 90%;
     height: clamp(100px, 25vh, 250px);
    border-radius: 6px;
    text-align: center;
}

.slider .slides img {
    width: 100%;
     height: 100%;
    background-color: transparent;
    object-fit: cover; 
    border-radius: 6px;
}
@media screen and(min-width: 481px) {
    .product-info{
        position: relative;
        bottom: 0;
    }

    .product-image img{
        transform: scale(1);
        height: 200px;
    }
    
}
 .hero {
  background-size: cover;
  background-position: center;
  transition: background-image 1s ease-in-out, filter 1s ease-in-out, opacity 1s ease-in-out;
}


@keyframes slideInBg {
  0% {
    background-position: 120% center;
    opacity: 0.6;
  }
  100% {
    background-position: center;
    opacity: 1;
  }
}

.slide-in {
  animation: slideInBg 1.2s ease-out forwards;
}


.category-section{
    width: 100%;
}
.category-section{
    width: 100%;
}
.category-section .category-grid{
    position: relative;
    width: 90%;
    place-self: center;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0 auto;
    gap: 16px;
    margin-bottom: 10px;
    text-align: center;
    height: auto;
}
    .slides{
        transition: all 0.8s ease;
    }
    .category-btns::-webkit-scrollbar{
        display: none;
    }
@media  screen and (max-width: 480px) {
    
.category-carousel{
    overflow-x: auto;
    width: 95%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 6px;
}
.category-btns{
    scroll-snap-type: mandatory;
    width: 100%;
    display: flex;
    justify-content: space-around;
    gap: 5px;
    margin: 5px auto;
}

.featured-category h3{
    font-weight: 500;
    text-align: center;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(1.7rem,5vw + .3rem, 2.4rem);
}
      .category-secton{
        z-index: 100;
    }
    .slides{
        transform: scale(1);
    }
}
.featured-products p{
    font-style: italic;
    font-size: clamp(.8rem,calc(2vw + .5rem),1.3rem);
    text-align: center;
    margin: auto;
}
.category-section h2{
    font-weight: 400;
        font-size: clamp(1.1rem, calc(2vw + 
        .1rem),1.6rem);
    font-family: "Montserrat", sans-serif;
}
@media screen and (min-width: 481px) {
    .product-card{
        flex-basis: 33%;
    }
  .category-section h2{
        margin-top: 5px;
    }
    }
    .slides:hover{
    background: rgba(255, 255, 255, 0.39);
  
    transform: translateY(-2px) scale(1.003);
}   
@media screen and (min-width: 1024px) {
    .category-item{
    flex: 1 1 30%;
}
}
@media screen and (min-width: 768px) {
    .category-btns{
        justify-content: center;
        gap: 15px;
        align-items: center;
    }
    .product-card{
       
        flex-basis: 30%;
        flex-grow: 0;
    }
    .category-item{
    flex: 1 1 48%;
}
}    
.footer-heading {
    margin: 0 0 15px;
    font-size: 20px;
    font-weight: bold;
} 
.footer h3{
    color: #E5E5E5;
    text-align: center;
}
.footer p{
    text-align: center;
    color: #CDCDCD;
}

.footer-nav a {
    margin: auto;
    text-align: start;
    color: #F5F5F5C7;
    text-decoration: none;
    font-size: clamp(.7rem,calc(2vw+.3rem),.8rem);
}

.footer-nav a:hover {
    color: #fff;
}
.product-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 180px;
    overflow: hidden;
    background: white;
}
.product-image img{
    max-width : 100%;
    max-height: 100%;
    object-fit: contain;
}
@media screen and (max-width: 480px) {
    .admin-icon{
        display: none;
    }
    .product-detail{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 0 auto;
    padding: 20px;
}
  .logo p{
    text-align: center;
}/*
transform: translateX(-.5%);*/
  .logo{
    display: grid;
    place-items: center;
    gap: 0;
    cursor: pointer;
    border-radius: 18px ;
    flex-direction: column;
  }
.footer-map{
    margin-bottom : 10px;
}/*
    .logo h1{
        display: none;
    }*/
    .search-container{
        top: 50%;
    left: 50%;
        transform : translate(-50%,100%);
        display: block;
        width: 350px;
        position: absolute;
        z-index: 100;

    display: none;
    }
    .search-input{
        display: block;
        width: auto;
}
.search-container button{
    display: none;
}
.search-container.active{
    top: 70%;
    display: flex;
}
.contact-info{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}
 .contact-info > .contact-item{
     text-align: center;
     width: 90%;
 }
.contact-form{
    width: 95%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
    
}
.navlink a.active{
    background: var(--navy);
    color: white;
}
.featured-image{
    position: relative;
}
.featured-image img{
    display: block;
    width: 100%;
}
.badge{
    position: absolute;
    top: 0;
    left: 0;
    text-align: center;
    padding: 10px 40px;
    z-index: 1;
    font-weight: 400;
    border-radius: 8px;
    background: #ff4c4c;
} 
@media screen and (min-width: 481px){
    .second{
        display: none;
    }
    .header{
        height: auto;
    }
    .header .nav-menu{
        order: 1;
    }
    .header .logo{
        order: 0;
    }
    .header .header-actions{
        order: 2;
    }

    .category-item{
    flex: 1 1 48%;}

.badge{
    display: none;
}
}
.newsletter {
  background: rgba(59, 59, 59, 0.75);
  backdrop-filter: blur(10px);
  color: white;
  width: 100%;
  padding: 40px 20px;
  text-align: center;
}

.newsletter-form {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.newsletter-form input {
  padding: 10px 15px;
  width: clamp(180px,calc( 2vw + 10px), 250px);
  border-radius: 6px;
  border: none;
}

.newsletter-form button {
  background: #ff4500;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.newsletter-form button:hover {
  background: #e63e00;
}
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.whatsapp-float img {
  width: 60px;
  height: 60px;
  border-radius: 100%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.whatsapp-float img:hover {
  transform: scale(1.1);
}
.subscribe-btn{
    color: white;
    background: var(--navy);
 
}
.subscribe-btn:hover{
    background: #ff4c4c;
}
.newsletter-form button{
  background: var(--navy); 
}

.newsletter-form button:hover{
  background: white;
  color: var(--navy);
}


.product-card {
  position: relative;
  background: #ffffffb7;
  border-radius: 8px;
  overflow: hidden;

  transition: all 0.3s ease;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.product-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  transition: transform 0.4s;
}
.product-card:hover img { transform: scale(1.08); }

.badges {
 position: absolute; top: 12px; left: 12px; z-index: 2; }
.badge {
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 400;
  margin-right: 6px;
}
.badge.hot { background: #ff4757; color: white; }
.badge.sale { background: #2ed573; color: white; }

.wishlist {
  position: absolute;
  top: 12px; right: 12px;
  background: rgba(255,255,255,0.9);
  border: none;
  font-size: 20px;
  width: 40px; height: 40px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
}

.rating {
  padding: 12px 16px 0;
  font-size: 14px;
  color: #ffa502;
}
.rating span { color: #888; margin-left: 4px; }

.title a {
  padding: 0 16px;
  font-size: 17px;
  font-weight: 400;
  color: #222;
  text-decoration: none;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
/*  -webkit-line-clamp: 2;*/
.subtitle {
  padding: 0 16px;
  color: #777;
  font-size: 14px;
  margin: 4px 0 8px;
}

.price {
  padding: 0 16px;
  font-size: 20px;
  font-weight: 400;
}
.old { text-decoration: line-through; color: #999; margin-right: 8px; font-weight: normal; font-size: 15px; }
.new { color: #e74c3c; }

.actions {
  padding: 16px;
  display: flex;
  gap: 10px;
}
.add-to-cart {
  
  padding: 12px;
  border-radius: 8px;
  font-weight: 500;
  corner-shape: squircle;
  cursor: pointer;
}
.quick-view {
  background: transparent;
  border: 2px solid #222;
  color: #222;
  padding: 12px 16px;
  border-radius: 8px;
  cursor: pointer;
}
body::-webkit-scrollbar{
    display: none;
}
body{
    scrollbar-width: none;
    overflow-x: hidden;
}
.product-detail{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 0 auto;
    padding: 20px;
}
.newsletter-form button{
    transition: all.5s ease;
    background: var(--navy);
}
.newsletter-form button:hover{
    background: var(--hover);
}
.nav-menu{
    box-shadow: none;
    border: none;
}
.search-container{
    width: auto;
}
.product-fetch{
    width: 100%;
    margin:  auto;
}
.category-products .product-name::first-letter{
    text-transform: uppercase;
}

  .logo{
    display: grid;
    place-items: center;
    gap: 0;
    cursor: pointer;
    border-radius: 18px ;
    flex-direction: column;
  }
  .header-actions .admin-icon{
    order: 3;
  }
  .admin-icon .fa-user{
    color: var(--navy);
    font-size: 1.6rem;
  }
  
/*
@media (min)
*/
@media (max-width: 480px) {
    .product-detail{
    display: flex;  
    flex-direction: column;
    justify-content: center;                    
    }
    
    
}
.logoword h1{
    color: black;
}
 
    .logoword span{
        color: rgba(190, 43, 43, 0.89);
    }
    /* =========================
   General nav styling
========================= */
.nav-menu {
    font-family: 'Arial', sans-serif;
    position: relative;
}

.nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    display: block;
    padding: 15px 20px;
    text-decoration: none;
    color: #0f0f0f;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-menu a:hover {
    background-color: rgb(140, 12, 12);
    color: #fff;
}

/* =========================
   Dropdown menu styling
========================= */
.dropdown .drop-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #2a2a2a;
    min-width: 220px;
    min-height: auto;       /* half of the screen */
    max-height: 50vh;
    overflow-y: auto;
    z-index: 1000;
    border-radius: 10px;
    padding: 15px 0;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s ease;
}

/* Show dropdown on hover */
.dropdown:hover .drop-content {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Dropdown items */
.dropdown .drop-content li {
    width: 100%;
    text-align: center;
}

.dropdown .drop-content a {
    padding: 12px 25px;
    color: #fff;
    display: block;
    text-align: center;
    border-radius: 8px;
    transition: background 0.3s ease, color 0.3s ease;
}

.dropdown .drop-content a:hover {
    background-color: rgb(140, 12, 12);
    color: #fff;
}

    /* =========================
   Mobile Menu Styling
========================= */
@media screen and (max-width: 480px) {
    .about-stats{
        padding: 10px 0;
        display: flex;
        scroll-snap-type: mandatory;
        flex-wrap: nowrap;
        overflow-x: auto;
        
    }
    .stat{
        box-shadow: none;
        scroll-snap-align: center;
        min-width: 90%;
    }
    
}
    /* Make nav vertical */
    .nav-menu ul {
        flex-direction: column;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    /* Hide menu initially */
    .nav-menu {
        position: absolute;
        right: -100%;       /* hide above the screen */
        left: 0;
        width: 100%;
        background-color: rgba(33, 33, 33, 0.72);
        opacity: 0;
        height: auto;
        backdrop-filter: blur(20px);
        color: white;
        transition: all 0.5s ease, opacity 0.5s ease;
        display: none;
        flex-direction: column;
    }

    /* Show menu when active */
    .nav-menu.active {
        right:  100%;   
        display: flex;
        min-height: 90%;
        top: 100%;
        opacity: 1;
    }
    .nav-menu li a  {
        color: white;
    }

    /* Dropdowns inside mobile menu */
    .dropdown .drop-content {
        position: relative;
        top: 0;
        left: 0;
        min-height: auto;
        max-height: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        padding: 0;
    }

    .dropdown .drop-content li a {
        padding: 12px 20px;
    }

    .nav-menu li {
        width: 100%;
    }

    .dropdown .drop-content {
        position: relative;
        min-height: auto;
        max-height: none;
        min-width: 100%;
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border-radius: 0;
    }


 
.hero-content h1{
    font-weight: 700;
    color: white;
    line-height: 1.1;
}
.slider{
    display: flex;
    gap: 5px;
    scroll-snap-type: mandatory;
}
.scrollChange{
    
    background: #00000066;
    backdrop-filter: blur(10px);
    max-width: 98%;
    margin: 0 auto;
    padding: 0;
    transform: scaleY(.9) scaleX(1);
    border-radius: 1rem;
    
}
.scrollChangeText{
    color: white;
}

#o_footer_scrolltop{
    background: rgba(104, 104, 104, 0.24);
    color: white;
    
}
.scroll-top-wrapper{
    display: none;
}
.display{
    display: block;
}
.category-card.btnClass{
    background: #FFFFFF6B;
    color: black;
    border-radius: 15px;
    border: 1px solid rgba(97, 97, 97, 0.66);
}/*
#lenses{
    display: none;
}*/

.category-row {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 20px 10px;
  scrollbar-width: none; /* Firefox */
}

.category-row::-webkit-scrollbar {
  display: none; /* Chrome */
}

.category-card {
  position: relative;
  min-width: clamp(30%, 35vw, 40%);
  height: clamp(100px, 16vh, 120px);
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
  cursor: pointer;
  transition: transform .25s ease;
}

.category-card:hover {
  transform: scale(1.08);
}

.category-card img {
  width: 100%;
  height: 70%;
  object-fit: contain;
}

.category-card span {
  width: 100%;
  padding: 5px 12px;
  font-size: 1rem;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  color: black;
  background:  rgba(0,0,0,0.05);
}

#bgVideo {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: -1;   
  object-fit: cover;
}
