/* ====== 89 Original | style.css ====== */

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #ffffff;
  color: #111111;
  line-height: 1.6;
  overflow-x: hidden;
}

img, video {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
}

:root {
  --white: #ffffff;
  --black: #111111;
  --soft-black: #1b1b1b;
  --brown: #6f4e37;
  --light-brown: #b38b6d;
  --gray: #f4f4f4;
  --border: #e7e7e7;
  --shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  --radius: 22px;
}

/* Layout */
.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 90px 0;
}

.section-tag {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brown);
  font-weight: 700;
  margin-bottom: 12px;
}

.section-heading h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.1;
  color: var(--black);
}

.section-heading {
  margin-bottom: 28px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  transition: 0.25s ease;
  font-weight: 700;
}

.btn-primary {
  background: var(--black);
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--brown);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

.btn-small {
  padding: 11px 18px;
  font-size: 0.92rem;
}

.full-width {
  width: 100%;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: 0.3s ease;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.05);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
}

.brand-logo {
  width: 110px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav a {
  font-weight: 700;
  color: var(--white);
  transition: 0.25s ease;
}

.header.scrolled .nav a {
  color: var(--black);
}

.nav a:hover {
  color: var(--brown);
}

.menu-btn {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 1.1rem;
}

.header.scrolled .menu-btn {
  background: var(--gray);
  color: var(--black);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.4)),
    linear-gradient(to top, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.15));
  z-index: -1;
}

.hero-content {
  padding-top: 110px;
  padding-bottom: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.hero-logo {
  width: min(280px, 70vw);
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.35));
}

.hero-kicker {
  font-size: 0.95rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.95;
}

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.6rem);
  line-height: 0.95;
  max-width: 10ch;
  text-wrap: balance;
}

.hero-text {
  max-width: 620px;
  font-size: 1.05rem;
  opacity: 0.92;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

/* Product Cards */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1 / 1.15;
  object-fit: cover;
  background: var(--gray);
}

.product-info {
  padding: 18px;
}

.product-info h3 {
  font-size: 1.15rem;
  margin-bottom: 5px;
}

.product-info p {
  color: #555;
  margin-bottom: 14px;
}

/* Shop Note */
.shop-note {
  background: linear-gradient(135deg, #ffffff, #faf7f4);
  border: 1px solid #eee2d9;
  border-left: 4px solid var(--brown);
  border-radius: 16px;
  padding: 16px 18px;
  margin-bottom: 24px;
  color: #444;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 28px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.about-content p {
  color: #444;
  margin-bottom: 15px;
  max-width: 56ch;
}

.about-points {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.about-points div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.about-points i {
  color: var(--brown);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow);
  transition: 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.02);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: start;
}

.contact-grid p {
  color: #444;
  max-width: 55ch;
}

.contact-actions {
  margin-top: 22px;
}

.contact-card {
  background: linear-gradient(180deg, #ffffff, #faf7f4);
  border: 1px solid #eee2d9;
  border-radius: 24px;
  padding: 26px;
  box-shadow: var(--shadow);
}

.contact-card h3 {
  margin-bottom: 18px;
}

.contact-card p {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Footer */
.footer {
  padding: 26px 0 40px;
  border-top: 1px solid var(--border);
  background: #fff;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-logo {
  width: 90px;
}

/* Cart Drawer */
.cart-drawer {
  position: fixed;
  top: 0;
  right: -410px;
  width: min(390px, 92vw);
  height: 100vh;
  background: #fff;
  z-index: 1200;
  box-shadow: -18px 0 40px rgba(0, 0, 0, 0.15);
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--border);
}

.cart-drawer.open {
  right: 0;
}

.cart-header {
  padding: 18px 18px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border);
}

.close-cart {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gray);
}

.cart-items {
  padding: 16px 18px;
  flex: 1;
  overflow-y: auto;
}

.empty-cart {
  color: #777;
  text-align: center;
  margin-top: 28px;
}

.cart-item {
  display: grid;
  grid-template-columns: 66px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.cart-item img {
  width: 66px;
  height: 66px;
  object-fit: cover;
  border-radius: 14px;
  background: var(--gray);
}

.cart-item h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.cart-item p {
  font-size: 0.9rem;
  color: #666;
}

.remove-item {
  background: transparent;
  color: #a22;
  font-size: 1rem;
  padding: 8px;
}

.cart-footer {
  border-top: 1px solid var(--border);
  padding: 18px;
  background: #fff;
}

.cart-footer p {
  margin-bottom: 14px;
  font-weight: 700;
}

.cart-footer #cartCount {
  color: var(--brown);
}

/* Floating Cart Button */
.floating-cart {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  box-shadow: var(--shadow);
  z-index: 1100;
  display: grid;
  place-items: center;
  font-size: 1.05rem;
}

.floating-cart span {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--brown);
  color: #fff;
  font-size: 0.75rem;
  display: grid;
  place-items: center;
  font-weight: 700;
  border: 2px solid #fff;
}

/* Utility */
.hidden {
  display: none !important;
}

/* Responsive */
@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 780px) {
  .nav {
    position: fixed;
    top: 82px;
    left: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 18px;
    box-shadow: var(--shadow);
    flex-direction: column;
    gap: 16px;
    transform: translateY(-18px);
    opacity: 0;
    pointer-events: none;
    transition: 0.25s ease;
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    color: var(--black) !important;
  }

  .menu-btn {
    display: grid;
    place-items: center;
  }

  .hero-content {
    padding-top: 125px;
  }

  .hero h1 {
    max-width: 11ch;
  }

  .section {
    padding: 70px 0;
  }
}

@media (max-width: 600px) {
  .product-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .cart-item {
    grid-template-columns: 56px 1fr auto;
  }

  .cart-item img {
    width: 56px;
    height: 56px;
  }
}
/* ================= SHOP PAGE ================= */

.shop-hero{
    margin-top:90px;
    padding:100px 20px;
    background:#111;
    color:#fff;
    text-align:center;
}

.shop-hero h1{
    font-size:55px;
    margin-bottom:15px;
}

.shop-hero p{
    max-width:600px;
    margin:auto;
    color:#ddd;
}

.shop-section{
    padding:80px 0;
}

.shop-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:40px;
    gap:20px;
    flex-wrap:wrap;
}

.search-box{
    display:flex;
    align-items:center;
    background:#fff;
    border:1px solid #ddd;
    border-radius:50px;
    padding:12px 20px;
}

.search-box input{
    border:none;
    outline:none;
    margin-left:10px;
    font-size:16px;
    width:220px;
}

.shop-bottom{
    margin-top:70px;
    background:#f7f7f7;
    padding:50px;
    text-align:center;
    border-radius:20px;
}

.shop-bottom h3{
    font-size:30px;
    margin-bottom:15px;
}

.shop-bottom p{
    color:#666;
    margin-bottom:25px;
}

/* ================= PRODUCT PAGE ================= */

.breadcrumb{
    margin-top:90px;
    background:#f8f8f8;
    padding:18px 0;
}

.breadcrumb a{
    color:#666;
}

.product-details{
    padding:70px 0;
}

.product-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:start;
}

.main-image img{
    width:100%;
    border-radius:20px;
}

.thumbnails{
    display:flex;
    gap:15px;
    margin-top:20px;
}

.thumbnails img{
    width:90px;
    border-radius:12px;
    cursor:pointer;
    transition:.3s;
}

.thumbnails img:hover{
    transform:scale(1.05);
}

.product-category{
    color:#777;
    margin-bottom:10px;
}

.rating{
    color:#d6a400;
    margin:20px 0;
}

.price{
    font-size:35px;
    color:#6F4E37;
    margin:20px 0;
    font-weight:700;
}

.description{
    color:#555;
    margin-bottom:30px;
}

.colors{
    display:flex;
    gap:15px;
    margin:20px 0;
}

.color{
    width:35px;
    height:35px;
    border-radius:50%;
    cursor:pointer;
    border:2px solid #ddd;
}

.black{
    background:#111;
}

.white{
    background:#fff;
}

.brown{
    background:#7B4A25;
}

.green{
    background:#3D5A2A;
}

.sizes{
    display:flex;
    gap:12px;
    margin:20px 0;
    flex-wrap:wrap;
}

.sizes button{
    padding:12px 20px;
    border:1px solid #ccc;
    background:#fff;
    cursor:pointer;
    border-radius:8px;
}

.sizes button:hover{
    background:#111;
    color:#fff;
}

.quantity{
    display:flex;
    align-items:center;
    gap:15px;
    margin:30px 0;
}

.quantity button{
    width:45px;
    height:45px;
    background:#111;
    color:#fff;
    border:none;
    font-size:22px;
    border-radius:8px;
}

.quantity input{
    width:70px;
    text-align:center;
    font-size:18px;
}

.buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.cart-btn{
    background:#111;
    color:#fff;
    padding:15px 28px;
    border:none;
    border-radius:50px;
    cursor:pointer;
}

.whatsapp-btn{
    background:#25D366;
    color:#fff;
    padding:15px 28px;
    border-radius:50px;
}

/* ================= EXTRA SECTION ================= */

.product-extra{
    padding:70px 0;
    background:#fafafa;
}

.extra-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.extra-card{
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.extra-card i{
    font-size:35px;
    color:#6F4E37;
    margin-bottom:20px;
}

.extra-card ul{
    padding-left:20px;
}

.extra-card table{
    width:100%;
    border-collapse:collapse;
}

.extra-card td,
.extra-card th{
    border:1px solid #ddd;
    padding:10px;
    text-align:center;
}

.related-products{
    padding:80px 0;
}

.product-cta{
    background:#111;
    color:#fff;
    text-align:center;
    padding:80px 20px;
}

.product-cta h2{
    font-size:40px;
    margin-bottom:20px;
}

.product-cta p{
    max-width:650px;
    margin:auto;
    margin-bottom:30px;
}

/* ================= MOBILE ================= */

@media(max-width:900px){

.product-container{
grid-template-columns:1fr;
}

.extra-grid{
grid-template-columns:1fr;
}

.shop-top{
flex-direction:column;
}

.search-box{
width:100%;
}

.search-box input{
width:100%;
}

.shop-hero h1{
font-size:40px;
}

.product-cta h2{
font-size:30px;
}

}
/* ================= HOME PAGE ================= */

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-shop-btn {
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  font-weight: 700;
  transition: 0.25s ease;
}

.nav-shop-btn:hover {
  background: var(--brown);
  transform: translateY(-2px);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.70),
    rgba(0, 0, 0, 0.35)
  );
  z-index: -1;
}

.hero-content {
  padding-top: 120px;
  padding-bottom: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.hero-logo {
  width: min(270px, 72vw);
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.35));
}

.hero-kicker {
  font-size: 0.95rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.95;
}

.hero h1 {
  font-size: clamp(2.7rem, 7vw, 5.8rem);
  line-height: 0.95;
  max-width: 11ch;
}

.hero-text {
  max-width: 620px;
  font-size: 1.05rem;
  opacity: 0.92;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1 / 1.15;
  object-fit: cover;
  background: var(--gray);
}

.product-info {
  padding: 18px;
}

.product-info h3 {
  font-size: 1.15rem;
  margin-bottom: 5px;
}

.product-info p {
  color: #555;
  margin-bottom: 14px;
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--brown);
  margin: 8px 0 10px;
}

.about-preview {
  background: #fafafa;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 28px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.about-content p {
  color: #444;
  margin-bottom: 15px;
  max-width: 58ch;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: linear-gradient(180deg, #ffffff, #faf7f4);
  border: 1px solid #eee2d9;
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
  transition: 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
}

.feature-card i {
  font-size: 2rem;
  color: var(--brown);
  margin-bottom: 16px;
}

.feature-card h3 {
  margin-bottom: 10px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow);
  transition: 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.02);
}

.cta-section {
  background: #111;
  color: #fff;
}

.cta-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  background: linear-gradient(135deg, rgba(111, 78, 55, 0.14), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: 34px;
}

.cta-box h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.1;
  margin-bottom: 12px;
  max-width: 12ch;
}

.cta-box p {
  max-width: 58ch;
  opacity: 0.9;
}

.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer {
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 36px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 20px;
  align-items: center;
  padding-bottom: 24px;
}

.footer-brand p {
  color: #555;
  margin-top: 10px;
  max-width: 32ch;
}

.footer-logo {
  width: 95px;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: #333;
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--brown);
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gray);
  color: var(--black);
  transition: 0.25s ease;
}

.footer-socials a:hover {
  background: var(--black);
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 16px 0 22px;
  text-align: center;
  color: #666;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid,
  .cta-box,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-links,
  .footer-socials {
    justify-content: flex-start;
  }
}

@media (max-width: 780px) {
  .nav {
    position: fixed;
    top: 82px;
    left: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 18px;
    box-shadow: var(--shadow);
    flex-direction: column;
    gap: 16px;
    transform: translateY(-18px);
    opacity: 0;
    pointer-events: none;
    transition: 0.25s ease;
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    color: var(--black);
  }

  .menu-btn {
    display: grid;
    place-items: center;
  }

  .hero-content {
    padding-top: 125px;
  }

  .section {
    padding: 72px 0;
  }

  .cta-box {
    padding: 26px;
  }
}

@media (max-width: 600px) {
  .product-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .cta-actions,
  .nav-actions {
    width: 100%;
  }

  .hero-actions .btn,
  .cta-actions .btn {
    width: 100%;
  }

  .nav-actions {
    justify-content: flex-end;
  }

  .footer-links {
    flex-direction: column;
    align-items: flex-start;
  }
}
.sizes button.selected,
.color.selected {
  background: #111;
  color: #fff;
  border-color: #111;
}

.thumbnails img.active {
  border: 2px solid #6f4e37;
}
/* ================= SHOP PAGE ================= */

.shop-hero{
    margin-top:80px;
    padding:100px 20px;
    background:linear-gradient(rgba(0,0,0,.75),rgba(0,0,0,.75)),url("assets/images/gallery1.jpg");
    background-size:cover;
    background-position:center;
    color:#fff;
    text-align:center;
}

.shop-hero h1{
    font-size:3rem;
    margin:15px 0;
}

.shop-hero p{
    max-width:650px;
    margin:auto;
}

.shop-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    margin-bottom:30px;
    flex-wrap:wrap;
}

.search-box{
    display:flex;
    align-items:center;
    gap:10px;
    background:#fff;
    padding:12px 18px;
    border-radius:50px;
    border:1px solid #ddd;
}

.search-box input{
    border:none;
    outline:none;
    font-size:16px;
    width:220px;
}

.filter-bar{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    margin-bottom:35px;
}

.filter-btn{
    padding:10px 22px;
    border:none;
    border-radius:30px;
    cursor:pointer;
    background:#eee;
    transition:.3s;
    font-weight:600;
}

.filter-btn:hover,
.filter-btn.active{
    background:#6F4E37;
    color:#fff;
}

.shop-bottom{
    margin-top:60px;
    text-align:center;
    background:#f8f8f8;
    padding:50px 25px;
    border-radius:20px;
}

.shop-bottom h3{
    margin-bottom:15px;
}

.shop-bottom p{
    margin-bottom:25px;
}

@media(max-width:768px){

.shop-top{
flex-direction:column;
align-items:flex-start;
}

.search-box{
width:100%;
}

.search-box input{
width:100%;
}

.filter-bar{
justify-content:center;
}

}
/* ================= PRODUCT PAGE ================= */

.breadcrumb{
    margin-top:90px;
    padding:18px 0;
    background:#f8f8f8;
    font-size:15px;
}

.breadcrumb a{
    color:#6F4E37;
    text-decoration:none;
}

.product-details{
    padding:70px 0;
}

.product-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:start;
}

.main-image{
    background:#f8f8f8;
    border-radius:20px;
    overflow:hidden;
}

.main-image img{
    width:100%;
    display:block;
}

.thumbnails{
    display:flex;
    gap:12px;
    margin-top:18px;
}

.thumbnails img{
    width:80px;
    height:80px;
    object-fit:cover;
    border-radius:12px;
    cursor:pointer;
    border:2px solid transparent;
    transition:.3s;
}

.thumbnails img:hover,
.thumbnails img.active{
    border-color:#6F4E37;
}

.product-category{
    color:#6F4E37;
    font-weight:600;
    margin-bottom:10px;
}

.rating{
    margin:15px 0;
    color:#f5a623;
}

.price{
    font-size:2rem;
    font-weight:700;
    margin:20px 0;
}

.description{
    color:#555;
    line-height:1.8;
}

.colors{
    display:flex;
    gap:15px;
    margin:15px 0 30px;
}

.color{
    width:35px;
    height:35px;
    border-radius:50%;
    cursor:pointer;
    border:2px solid #ddd;
}

.color.black{
    background:#000;
}

.color.white{
    background:#fff;
}

.color.brown{
    background:#6F4E37;
}

.color.green{
    background:#355E3B;
}

.color.selected{
    transform:scale(1.15);
    border:3px solid #000;
}

.sizes{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    margin:15px 0 30px;
}

.sizes button{
    padding:12px 20px;
    border:1px solid #ddd;
    background:#fff;
    border-radius:10px;
    cursor:pointer;
    transition:.3s;
}

.sizes button.selected{
    background:#000;
    color:#fff;
}

.quantity{
    display:flex;
    align-items:center;
    gap:10px;
    margin:20px 0 30px;
}

.quantity button{
    width:45px;
    height:45px;
    border:none;
    background:#6F4E37;
    color:#fff;
    font-size:20px;
    cursor:pointer;
    border-radius:10px;
}

.quantity input{
    width:70px;
    height:45px;
    text-align:center;
    border:1px solid #ddd;
    border-radius:10px;
    font-size:18px;
}

.buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.cart-btn,
.whatsapp-btn{
    flex:1;
    padding:15px;
    border:none;
    border-radius:12px;
    cursor:pointer;
    text-decoration:none;
    text-align:center;
    font-weight:700;
}

.cart-btn{
    background:#000;
    color:#fff;
}

.whatsapp-btn{
    background:#25D366;
    color:#fff;
}

.product-extra{
    padding:80px 0;
    background:#fafafa;
}

.extra-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.extra-card{
    background:#fff;
    padding:30px;
    border-radius:18px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.extra-card i{
    font-size:35px;
    color:#6F4E37;
    margin-bottom:15px;
}

.extra-card table{
    width:100%;
    border-collapse:collapse;
}

.extra-card table td,
.extra-card table th{
    padding:10px;
    border-bottom:1px solid #eee;
}

.related-products{
    padding:80px 0;
}

.product-cta{
    background:#111;
    color:#fff;
    text-align:center;
    padding:80px 20px;
}

.product-cta p{
    margin:20px auto;
    max-width:600px;
}

/* Mobile */

@media(max-width:900px){

.product-container{
grid-template-columns:1fr;
}

.extra-grid{
grid-template-columns:1fr;
}

.buttons{
flex-direction:column;
}

.thumbnails{
justify-content:center;
}

.main-image img{
max-height:450px;
object-fit:cover;
}

}
/* ================= CONTACT PAGE ================= */

.contact-form{
    display:flex;
    flex-direction:column;
    gap:18px;
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:15px;
    border:1px solid #ddd;
    border-radius:12px;
    outline:none;
    font-size:16px;
    font-family:inherit;
    transition:.3s;
}

.contact-form input:focus,
.contact-form textarea:focus{
    border-color:#6F4E37;
    box-shadow:0 0 0 3px rgba(111,78,55,.15);
}

.contact-form textarea{
    resize:vertical;
    min-height:160px;
}

.contact-form button{
    width:100%;
}

.about-grid p{
    margin-bottom:18px;
    font-size:17px;
    color:#555;
}

.about-grid p i{
    color:#6F4E37;
    margin-right:10px;
    width:25px;
}

.about-grid strong{
    color:#111;
}

.about-grid .btn{
    margin-top:20px;
}

.features-grid .feature-card h3{
    margin-bottom:12px;
}

.features-grid .feature-card p{
    line-height:1.7;
    color:#555;
}

.contact-form input:hover,
.contact-form textarea:hover{
    border-color:#6F4E37;
}

.contact-form button:hover{
    transform:translateY(-2px);
}

/* ================= MOBILE ================= */

@media(max-width:768px){

.contact-form{
padding:22px;
}

.contact-form input,
.contact-form textarea{
font-size:15px;
}

.about-grid{
gap:35px;
}

.about-grid .btn{
width:100%;
text-align:center;
}

}
/* CART ICON */

.cart-icon{

position:relative;

width:48px;

height:48px;

display:flex;

justify-content:center;

align-items:center;

background:#fff;

border-radius:50%;

font-size:20px;

color:#111;

text-decoration:none;

box-shadow:0 5px 15px rgba(0,0,0,.08);

transition:.3s;

}

.cart-icon:hover{

background:#6F4E37;

color:#fff;

}

#cartCount{

position:absolute;

top:-6px;

right:-6px;

background:red;

color:#fff;

width:22px;

height:22px;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

font-size:12px;

font-weight:bold;

}
/* ================= CART PAGE ================= */

.cart-item{
display:flex;
align-items:center;
justify-content:space-between;
gap:20px;
background:#fff;
padding:20px;
margin-bottom:20px;
border-radius:15px;
box-shadow:0 5px 15px rgba(0,0,0,.08);
flex-wrap:wrap;
}

.cart-item img{
width:120px;
height:120px;
object-fit:cover;
border-radius:12px;
}

.cart-info{
flex:1;
}

.cart-info h3{
margin-bottom:10px;
}

.cart-info p{
margin:6px 0;
color:#555;
}

.cart-qty{
display:flex;
align-items:center;
gap:12px;
margin-top:15px;
}

.cart-qty button{
width:40px;
height:40px;
border:none;
border-radius:8px;
background:#6F4E37;
color:#fff;
font-size:18px;
cursor:pointer;
}

.cart-qty span{
font-size:18px;
font-weight:700;
min-width:30px;
text-align:center;
}

.remove-btn{
padding:10px 18px;
border:none;
border-radius:8px;
background:#e53935;
color:#fff;
cursor:pointer;
font-weight:600;
}

.cart-summary{
margin-top:40px;
padding:30px;
background:#fff;
border-radius:18px;
box-shadow:0 5px 15px rgba(0,0,0,.08);
text-align:center;
}

.cart-summary h2{
margin-bottom:10px;
}

.cart-summary h1{
font-size:2.5rem;
margin-bottom:25px;
color:#6F4E37;
}

.empty-cart{
text-align:center;
padding:60px 20px;
background:#fff;
border-radius:18px;
box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.empty-cart h2{
margin-bottom:20px;
}

/* Mobile */

@media(max-width:768px){

.cart-item{
flex-direction:column;
text-align:center;
}

.cart-item img{
width:100%;
max-width:250px;
height:auto;
}

.cart-info{
width:100%;
}

.cart-qty{
justify-content:center;
}

.remove-btn{
width:100%;
}

.cart-summary{
padding:20px;
}

}
/* ================= LIGHTBOX ================= */

.lightbox{

display:none;

position:fixed;

top:0;

left:0;

width:100%;

height:100%;

background:rgba(0,0,0,.9);

justify-content:center;

align-items:center;

z-index:9999;

padding:20px;

}

.lightbox img{

max-width:90%;

max-height:90%;

border-radius:15px;

}

.close-lightbox{

position:absolute;

top:20px;

right:30px;

font-size:45px;

color:#fff;

cursor:pointer;

font-weight:bold;

}