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

:root {
    --orange: #d86b1f;
    --orange2: #ff9b45;
    --dark: #172012;
    --green: #243b20;
    --cream: #fff7e8;
    --text: #2a241f;
    --white: #fff
}

html {
    scroll-behavior: smooth
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: linear-gradient(135deg, #fff7e8, #fff);
    color: var(--text);
    overflow-x: hidden
}

a {
    text-decoration: none;
    color: inherit
}

img {
    max-width: 100%;
    display: block
}

.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 6%;
    background: rgba(255, 247, 232, .92);
    backdrop-filter: blur(18px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, .08);
    border-bottom: 1px solid rgba(216, 107, 31, .14)
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    color: var(--green);
    font-size: 20px
}

.brand img {
    width: 54px;
    height: 54px;
    object-fit: contain
}

.navbar {
    display: flex;
    align-items: center;
    gap: 17px
}

.navbar a {
    font-weight: 800;
    position: relative;
    padding: 10px 0;
    color: var(--dark)
}

.navbar a:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 0;
    height: 3px;
    background: var(--orange);
    border-radius: 10px;
    transition: .35s
}

.navbar a:hover:after {
    width: 100%
}

.cart-link b {
    background: var(--orange);
    color: white;
    border-radius: 50%;
    padding: 3px 8px;
    font-size: 12px
}

.cart-icon {
    display: inline-block;
    width: 16px;
    height: 14px;
    border: 2px solid var(--green);
    border-top: 0;
    border-radius: 2px;
    position: relative;
    top: 2px
}

.cart-icon:before {
    content: "";
    position: absolute;
    width: 8px;
    height: 6px;
    border: 2px solid var(--green);
    border-bottom: 0;
    border-radius: 8px 8px 0 0;
    top: -8px;
    left: 2px
}

.nav-search {
    display: flex;
    background: white;
    border-radius: 999px;
    overflow: hidden;
    border: 1px solid rgba(216, 107, 31, .25)
}

.nav-search input {
    border: 0;
    padding: 11px 12px;
    outline: 0;
    width: 155px
}

.nav-search button {
    border: 0;
    background: var(--orange);
    color: white;
    padding: 11px 15px;
    font-weight: 800
}

.menu-btn {
    display: none;
    background: none;
    border: 0;
    flex-direction: column;
    gap: 5px
}

.menu-btn span {
    width: 28px;
    height: 3px;
    background: var(--green);
    display: block;
    border-radius: 10px
}

.hero {
    min-height: 88vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 8% 6%;
    overflow: hidden
}

.hero-slider,
.hero-slide {
    position: absolute;
    inset: 0
}

.hero-slide {
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.08);
    transition: 1.2s
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1)
}

.hero:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 247, 232, .95) 0%, rgba(255, 247, 232, .8) 38%, rgba(255, 247, 232, .15) 100%)
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px
}

.eyebrow,
.section-title span,
.inner-hero span,
.why-content span {
    color: var(--orange);
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase
}

h1 {
    font-size: clamp(38px, 6vw, 78px);
    line-height: 1.02;
    color: var(--dark)
}

h2 {
    font-size: clamp(28px, 4vw, 48px);
    color: var(--dark)
}

p {
    font-size: 17px;
    line-height: 1.7;
    color: #625548
}

.hero-content p {
    margin: 22px 0;
    max-width: 560px
}

.hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap
}

.primary-btn,
.secondary-btn {
    border: 0;
    display: inline-block;
    padding: 14px 26px;
    border-radius: 999px;
    font-weight: 900;
    cursor: pointer;
    transition: .35s
}

.primary-btn {
    background: linear-gradient(135deg, var(--orange), var(--orange2));
    color: white;
    box-shadow: 0 20px 45px rgba(216, 107, 31, .25)
}

.secondary-btn {
    background: white;
    color: var(--green);
    border: 1px solid rgba(216, 107, 31, .25)
}

.primary-btn:hover,
.secondary-btn:hover {
    transform: translateY(-5px) rotateX(8deg)
}

.floating-product {
    position: absolute;
    right: 8%;
    bottom: 8%;
    width: 260px;
    z-index: 2;
    animation: float3d 4s ease-in-out infinite;
    filter: drop-shadow(0 30px 35px rgba(0, 0, 0, .25))
}

@keyframes float3d {

    0%,
    100% {
        transform: translateY(0) rotateY(-12deg)
    }

    50% {
        transform: translateY(-24px) rotateY(12deg)
    }
}

.category-section,
.why-section,
.content-section,
.partner-grid,
.contact-grid,
.cart-page {
    padding: 80px 6%
}

.section-title {
    text-align: center;
    margin-bottom: 35px
}

.category-slider {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 10px 0 25px
}

.category-card {
    min-width: 280px;
    height: 220px;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    scroll-snap-align: start;
    box-shadow: 0 25px 55px rgba(0, 0, 0, .15);
    transform-style: preserve-3d;
    transition: .35s
}

.category-card:hover {
    transform: perspective(900px) rotateY(-10deg) translateY(-8px)
}

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

.category-card h3 {
    position: absolute;
    left: 18px;
    bottom: 18px;
    color: white;
    font-size: 28px;
    text-shadow: 0 5px 18px rgba(0, 0, 0, .6)
}

.why-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
    align-items: center
}

.why-image img,
.inner-hero img {
    border-radius: 34px;
    box-shadow: 0 25px 65px rgba(0, 0, 0, .18)
}

.tilt-card {
    transition: .4s;
    transform-style: preserve-3d
}

.tilt-card:hover {
    transform: perspective(900px) rotateX(6deg) rotateY(-8deg) translateY(-8px)
}

.inner-hero {
    padding: 70px 6%;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 40px;
    align-items: center;
    background: radial-gradient(circle at top right, rgba(216, 107, 31, .2), transparent 35%), linear-gradient(135deg, #fff7e8, #fff)
}

.inner-hero img {
    max-height: 430px;
    width: 100%;
    object-fit: cover
}

.shop-tools {
    padding: 40px 6% 10px;
    display: flex;
    gap: 18px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap
}

.shop-tools input {
    padding: 15px 18px;
    border-radius: 999px;
    border: 1px solid rgba(216, 107, 31, .3);
    min-width: 280px;
    outline: 0
}

.filter-tabs {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.filter-tabs button {
    border: 0;
    padding: 12px 20px;
    border-radius: 999px;
    background: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
    font-weight: 800;
    cursor: pointer
}

.filter-tabs button.active {
    background: var(--orange);
    color: white
}

.product-grid {
    padding: 30px 6% 80px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.product-card,
.content-card,
.partner-card,
.contact-card,
.contact-form,
.cart-row,
.detail-card {
    background: white;
    border-radius: 30px;
    padding: 22px;
    box-shadow: 0 25px 55px rgba(0, 0, 0, .1);
    border: 1px solid rgba(216, 107, 31, .12)
}

.product-card {
    transform-style: preserve-3d;
    transition: .35s
}

.product-card:hover {
    transform: perspective(900px) rotateX(4deg) rotateY(-6deg) translateY(-8px)
}

.product-card img {
    height: 260px;
    width: 100%;
    object-fit: contain;
    background: #fff7e8;
    border-radius: 22px;
    padding: 12px
}

.product-card h3 {
    font-size: 22px;
    margin: 15px 0 6px;
    color: var(--dark)
}

.price {
    font-size: 22px;
    font-weight: 900;
    color: var(--orange);
    margin: 10px 0
}

.card-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.small-btn {
    padding: 11px 16px;
    border-radius: 999px;
    border: 1px solid rgba(216, 107, 31, .3);
    background: white;
    font-weight: 800;
    cursor: pointer
}

.partner-grid,
.content-section,
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.partner-card img {
    height: 220px;
    width: 100%;
    object-fit: cover;
    border-radius: 22px;
    margin-bottom: 15px
}

.contact-grid {
    grid-template-columns: 1fr 1fr
}

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

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border-radius: 15px;
    border: 1px solid rgba(216, 107, 31, .25);
    outline: 0
}

.contact-form textarea {
    min-height: 130px
}

.product-detail {
    padding: 80px 6%
}

.detail-card {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 35px;
    align-items: center
}

.detail-card img {
    height: 460px;
    width: 100%;
    object-fit: contain;
    background: #fff7e8;
    border-radius: 30px
}

.qty {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 15px 0
}

.qty button {
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    background: var(--orange);
    color: white;
    font-size: 20px;
    cursor: pointer
}

.cart-items {
    display: grid;
    gap: 16px
}

.cart-row {
    display: grid;
    grid-template-columns: 90px 1fr auto auto;
    gap: 18px;
    align-items: center
}

.cart-row img {
    height: 90px;
    width: 90px;
    object-fit: contain;
    background: #fff7e8;
    border-radius: 15px
}

.cart-summary {
    text-align: right;
    margin-top: 25px
}

.footer {
    padding: 50px 6% 20px;
    background: var(--dark);
    color: white
}

.footer-card {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 25px
}

.footer h2,
.footer h3,
.footer p,
.footer a {
    color: white
}

.footer a {
    display: block;
    margin: 10px 0
}

.footer-logo {
    width: 70px
}

.footer-btn {
    background: var(--orange);
    padding: 12px 18px;
    border-radius: 999px;
    width: max-content
}

.copyright {
    text-align: center;
    margin-top: 30px;
    opacity: .8
}

@media(max-width:900px) {
    .menu-btn {
        display: flex
    }

    .navbar {
        position: absolute;
        top: 82px;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 20px 6%;
        background: #fff7e8;
        box-shadow: 0 20px 50px rgba(0, 0, 0, .12)
    }

    .navbar.active {
        display: flex
    }

    .nav-search input {
        width: 100%
    }

    .hero {
        min-height: 78vh;
        padding-top: 120px
    }

    .floating-product {
        width: 150px;
        right: 5%;
        bottom: 3%
    }

    .why-section,
    .inner-hero,
    .detail-card,
    .contact-grid {
        grid-template-columns: 1fr
    }

    .product-grid,
    .partner-grid,
    .content-section,
    .footer-card {
        grid-template-columns: 1fr
    }

    .cart-row {
        grid-template-columns: 70px 1fr;
        gap: 12px
    }

    .cart-row .price,
    .cart-row .qty {
        grid-column: 2
    }
}
.filter-tabs button{
    border:none;
    outline:none;
    padding:14px 24px;
    border-radius:50px;
    background:rgba(255,255,255,0.12);
    color:#2b2b2b; /* TEXT FIX */
    font-size:15px;
    font-weight:700;
    cursor:pointer;
    transition:0.4s ease;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    backdrop-filter:blur(10px);
    border:1px solid rgba(0,0,0,0.06);
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.filter-tabs button i{
    font-size:18px;
    color:inherit;
}

.filter-tabs button:hover{
    transform:translateY(-4px) scale(1.03);
    background:linear-gradient(135deg,#8bc34a,#4caf50);
    color:#fff;
    box-shadow:0 10px 25px rgba(76,175,80,0.35);
}

.filter-tabs button.active{
    background:linear-gradient(135deg,#d4af37,#f5d76e);
    color:#111;
    box-shadow:0 10px 25px rgba(212,175,55,0.35);
}
.filter-tabs button{
    border:none;
    outline:none;
    padding:14px 24px;
    border-radius:50px;
    background:rgba(255,255,255,0.12);
    color:#2b2b2b; /* TEXT FIX */
    font-size:15px;
    font-weight:700;
    cursor:pointer;
    transition:0.4s ease;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    backdrop-filter:blur(10px);
    border:1px solid rgba(0,0,0,0.06);
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.filter-tabs button i{
    font-size:18px;
    color:inherit;
}

.filter-tabs button:hover{
    transform:translateY(-4px) scale(1.03);
    background:linear-gradient(135deg,#8bc34a,#4caf50);
    color:#fff;
    box-shadow:0 10px 25px rgba(76,175,80,0.35);
}

.filter-tabs button.active{
    background:linear-gradient(135deg,#d4af37,#f5d76e);
    color:#111;
    box-shadow:0 10px 25px rgba(212,175,55,0.35);
}
/* EYE CARE BUTTON STYLE */

button[data-cat="eyecare"]{
    border:none;
    outline:none;
    padding:14px 24px;
    border-radius:50px;
    background:linear-gradient(135deg,#e8fff1,#c8f7dc);
    color:#14532d;
    font-size:15px;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    cursor:pointer;
    transition:0.35s ease;
    box-shadow:0 5px 18px rgba(0,0,0,0.08);
}

button[data-cat="eyecare"] i{
    font-size:18px;
    color:#a6b8ac;
}

button[data-cat="eyecare"]:hover{
    transform:translateY(-4px) scale(1.03);
    background:linear-gradient(135deg,#16a34a,#22c55e);
    color:#fff;
    box-shadow:0 10px 25px rgba(123, 144, 131, 0.35);
}

button[data-cat="eyecare"]:hover i{
    color:#fff;
}

button[data-cat="eyecare"].active{
    background:linear-gradient(135deg,#d4af37,#f5d76e);
    color:#111;
}

button[data-cat="eyecare"].active i{
    color:#111;
}
.about-hero{
    width:100%;
    background:#f8fbf5;
    padding:60px 8%;
    margin-top:0;
    overflow:hidden;
}

.about-hero-content{
    text-align:center;
    margin-bottom:50px;
}

.about-hero-content span{
    color:#7ca37c;
    font-size:20px;
    font-weight:600;
}

.about-hero-content h1{
    font-size:70px;
    margin-top:15px;
    color:#0f1b0f;
    line-height:1.1;
}

.about-hero-content p{
    margin-top:18px;
    color:#666;
    font-size:20px;
}

.floating-images{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
    max-width:1400px;
    margin:auto;
}

.team-floating-card{
    background:#fff;
    border-radius:28px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
    transition:0.4s;
}

.team-floating-card:hover{
    transform:translateY(-10px);
}

.team-floating-card img{
    width:100%;
    height:500px;
    object-fit:cover;
}

.team-info{
    padding:25px;
    text-align:center;
}

.team-info h3{
    font-size:34px;
    color:#111;
    margin-bottom:10px;
}

.team-info p{
    font-size:19px;
    color:#666;
    line-height:1.6;
}

/* MOBILE */

@media(max-width:900px){

    .about-hero{
        padding:40px 5%;
    }

    .about-hero-content h1{
        font-size:42px;
    }

    .about-hero-content p{
        font-size:16px;
    }

    .floating-images{
        grid-template-columns:1fr;
    }

    .team-floating-card img{
        height:400px;
    }

    .team-info h3{
        font-size:28px;
    }
}

/* ===== ABOUT PAGE FIX ===== */
.about-main-hero {
  min-height: 72vh;
  background: linear-gradient(135deg, #fff7e8 0%, #fff 100%);
}

.inner-hero-img {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 22px 55px rgba(0,0,0,.12);
}

.inner-hero-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.team-section {
  padding: 85px 6%;
  background: #f7fff4;
}

.team-grid {
  max-width: 1150px;
  margin: 35px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.team-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0,0,0,.10);
  transition: .35s ease;
  border: 1px solid rgba(216,107,31,.12);
}

.team-card:hover {
  transform: translateY(-8px);
}

.team-card img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  object-position: top;
}

.team-card div {
  padding: 22px;
  text-align: center;
}

.team-card h3 {
  font-size: 24px;
  color: var(--dark);
  margin-bottom: 7px;
}

.team-card p {
  font-size: 15px;
}

.about-brand-section {
  background: #fff7e8;
}

.about-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.about-feature-grid div {
  background: #fff;
  padding: 18px 14px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 12px 30px rgba(0,0,0,.07);
}

.about-feature-grid i {
  font-size: 25px;
  color: var(--orange);
}

.navbar a.active:after {
  width: 100%;
}

@media(max-width: 900px) {
  .brand span {
    font-size: 16px;
  }

  .inner-hero-img img {
    height: 260px;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-card img {
    height: 330px;
  }

  .about-feature-grid {
    grid-template-columns: 1fr;
  }
}
