/* NAV */


/*nav search*/

/* Search Container */
.nav-search {
  position: relative;
  margin: 0 20px;
}

/* Search Input */
.nav-search input {
  width: 260px;
  height: 42px;
  padding: 0 16px;
  border: 1px solid #d8d8d8;
  border-radius: 999px;
  background: #fff;
  font-size: 14px;
  transition: all 0.25s ease;
  outline: none;
}

.nav-search input::placeholder {
  color: #999;
}

.nav-search input:focus {
  border-color: #b08968;
  box-shadow: 0 0 0 4px rgba(176, 137, 104, 0.12);
}

/* Dropdown */
.search-results {
  display: none;
  position: absolute;
  top: 52px;
  left: 0;
  width: 320px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  z-index: 9999;
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.08),
    0 2px 8px rgba(0, 0, 0, 0.04);
}

/* Search Result Item */
.search-item {
  display: block;
  padding: 14px 18px;
  text-decoration: none;
  color: #222;
  transition: background 0.2s ease;
  border-bottom: 1px solid #f3f3f3;
}

.search-item:last-child {
  border-bottom: none;
}

.search-item:hover {
  background: #f8f6f3;
}

/* Product Name */
.search-item strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

/* SKU */
.search-item small {
  color: #888;
  font-size: 12px;
  letter-spacing: 0.5px;
}

/* No Results */
.no-result {
  padding: 18px;
  text-align: center;
  color: #999;
  font-size: 14px;
}
/* Layout Positioning — Transformed to Sticky Execution Context */
/* =========================
   NAVBAR
========================= */

.site-nav{
  position:sticky;
  top:0;
  z-index:999;
  background:#000;
  border-bottom:1px solid rgba(255,255,255,.08);

  display:flex;
  align-items:center;
  justify-content:space-between;

  padding:24px 60px;
}

.nav-logo{
  display:flex;
  align-items:center;
  text-decoration:none;
}

.logo-img{
  height:42px;
  width:auto;
  display:block;
}

/* DESKTOP MENU */

.nav-links{
  display:flex;
  align-items:center;
  gap:40px;
  list-style:none;
  margin:0;
  padding:0;
}

.nav-links a{
  font-size:11px;
  letter-spacing:3px;
  text-transform:uppercase;
  color:#999;
  text-decoration:none;
  font-weight:500;
  transition:.3s;
}

.nav-links a:hover{
  color:#a13d2d;
}

/* CTA */

.nav-cta{
  font-size:11px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:#111;
  background:#a13d2d;
  padding:10px 24px;
  text-decoration:none;
  font-weight:600;
  transition:.3s;
}

.nav-cta:hover{
  background:#863224;
}

/* HAMBURGER */

.hamburger{
  display:none;
  background:none;
  border:none;
  cursor:pointer;
  padding:0;
  flex-direction:column;
  gap:5px;
}

.hamburger span{
  width:24px;
  height:2px;
  background:#fff;
  transition:.3s;
}

/* HAMBURGER ANIMATION */

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

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

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

/* TABLET */

@media (max-width:992px){

  .site-nav{
    padding:20px 30px;
  }

  .nav-links{
    gap:24px;
  }

}

/* MOBILE */

@media (max-width:768px){

  .site-nav{
    padding:16px 20px;
  }

  .logo-img{
    height:34px;
  }

  .hamburger{
    display:flex;
  }

  .nav-cta{
    display:none;
  }

  .nav-links{
    display:none;

    position:absolute;
    top:100%;
    left:0;

    width:100%;
    background:#000;

    flex-direction:column;
    align-items:center;
    gap:0;

    border-bottom:1px solid rgba(255,255,255,.08);
  }

  .nav-links.active{
    display:flex;
  }

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

  .nav-links a{
    display:block;
    padding:18px 20px;
    text-align:center;
    border-bottom:1px solid rgba(255,255,255,.05);
  }

}

/*nav end*/

  section{
    padding:80px 20px;
  }

  .hero{
    padding:110px 20px 60px;
  }

  .hero-title{
    font-size: clamp(58px,18vw,100px);
  }

  .hero-body{
    font-size:16px;
    line-height:1.6;
  }

  .hero-actions{
    flex-direction:column;
    align-items:flex-start;
    gap:18px;
  }

  .hero-visual{
    grid-template-columns:1fr;
    gap:12px;
  }

  .handle-card{
    aspect-ratio:1.2;
  }

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

  .finish-item{
    min-width:100%;
  }

  .stats-row{
    grid-template-columns:1fr;
  }

  .collection-banner{
    margin:0 -20px;
    padding:70px 20px;
    min-height:auto;
  }

  .collection-banner-bg-text{
    font-size:110px;
    right:-10px;
  }

  .footer-top{
    grid-template-columns:1fr;
    gap:40px;
  }

  .footer-bottom{
    flex-direction:column;
    gap:14px;
    text-align:center;
  }

  .series-number{
    font-size:120px;
    right:10px;
    top:0;
  }



@media (max-width: 480px){

  .hero-title{
    font-size:72px;
    line-height:0.9;
  }

  .hero-title .italic{
    font-size:0.55em;
  }

  .section-heading{
    font-size:52px;
  }

  .btn-primary{
    width:100%;
    text-align:center;
  }

  .hero-actions{
    width:100%;
  }

  .hero > div:last-child{
    left:20px !important;
    bottom:20px !important;
    gap:20px !important;
    flex-wrap:wrap;
  }

  .stat-number{
    font-size:52px;
  }

}


/* HERO CAROUSEL */

.hero-carousel{
  position:absolute;
  right:0%;
  top:50%;
  transform:translateY(-50%);
width:55%;
max-width:800px;
  height:720px;
  overflow:hidden;
  border-radius:28px;
  z-index:2;
  border:1px solid rgba(255,255,255,0.06);
  background:#111;
}

.carousel-track{
  display:flex;
  width:300%;
  height:100%;
  animation:slideCarousel 12s infinite;
}

.carousel-track img{
  width:100%;
  height:100%;
  object-fit:cover;
  flex-shrink:0;
}

/* CAROUSEL ANIMATION */

@keyframes slideCarousel{

  0%{
    transform:translateX(0%);
  }

  30%{
    transform:translateX(0%);
  }

  35%{
    transform:translateX(-100%);
  }

  65%{
    transform:translateX(-100%);
  }

  70%{
    transform:translateX(-200%);
  }

  95%{
    transform:translateX(-200%);
  }

  100%{
    transform:translateX(0%);
  }

}


/*footer*/

/* ==========================
   FOOTER
========================== */

.footer-logo{
  width: 180px;   /* adjust size */
  height: auto;
  display: block;
  margin-bottom: 15px;
}


footer {
  background: var(--carbon);
  padding: 80px 60px 40px;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 80px;
  margin-bottom: 60px;
}

.footer-brand {
  font-family: var(--display);
  font-size: 36px;
  letter-spacing: 4px;
  margin-bottom: 20px;
}

.footer-brand span {
  color: var(--red);
}

.footer-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 28px;
}

.footer-badge {
  display: inline-block;
  border: 1px solid rgba(192, 0, 30, 0.4);
  color: var(--red);
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 16px;
  font-weight: 600;
}

.footer-col-title {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 24px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0;
  margin: 0;
}

.footer-links a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.04);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 1px;
}

.footer-country {
  color: var(--red);
  letter-spacing: 2px;
}

/* ==========================
   RESPONSIVE
========================== */

@media (max-width: 900px) {
  footer {
    padding: 60px 25px 30px;
  }

@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 600px) {


  
  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    font-size: 28px;
  }
}
.footer-newsletter-box {
  max-width: 420px;
}

.footer-newsletter-heading {
  font-size: 22px;
  font-weight: 700;
  color: firebrick;
  margin-bottom: 8px;
}

.footer-newsletter-text {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-newsletter-form {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-newsletter-form input {
  flex: 1;
  height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: var(--white);
  outline: none;
  font-size: 14px;
}

.footer-newsletter-form input::placeholder {
  color: var(--muted);
}

.footer-newsletter-form input:focus {
  border-color: var(--red);
}

.footer-newsletter-form button {
  height: 48px;
  padding: 0 28px;
  border: none;
  border-radius: 999px;
  background: #ff6a21;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all .3s ease;
}

.footer-newsletter-form button:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

.footer-contact-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #5a0000, #8b0000);
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.footer-contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(139, 0, 0, 0.25);
}

/* HERO STATS */

.hero-stats{
  position:absolute;
  bottom:40px;
  left:60px;
  display:flex;
  gap:50px;
  z-index:2;
  align-items:center;
}

.hero-stat-number{
  font-family:var(--display);
  font-size:36px;
  color:var(--white);
}

.hero-stat-label{
  font-size:10px;
  letter-spacing:3px;
  color:var(--muted);
  text-transform:uppercase;
}

.hero-divider{
  width:1px;
  height:42px;
  background:rgba(255,255,255,0.08);
}

/* MOBILE */

@media(max-width:980px){

  .hero{
    padding-top:120px;
    flex-direction:column;
    justify-content:center;
  }

  .hero-carousel{
    position:relative;
    width:100%;
    max-width:100%;
    height:420px;
    right:auto;
    top:auto;
    transform:none;
    margin-top:50px;
  }

  .hero-stats{
    position:relative;
    left:auto;
    bottom:auto;
    margin-top:40px;
    justify-content:center;
    flex-wrap:wrap;
    padding-bottom:40px;
  }

}

