
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");





/* ===================== GLOBAL ===================== */
body, html {
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  background-color: #eff2f1; 
  overflow-x: hidden;
}
a {
  text-decoration: none;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
  color: #000000;
  }
  a:hover {
    color: #b9b9b9;
    text-decoration: none; }
  a.more {
    font-weight: 600; }
/* Push content below fixed navbar */
body {
  padding-top: 90px;
}

/* Adjust for mobile */
@media (max-width: 768px) {
  body {
    padding-top: 80px;
  }
}


/* ===================== NAVBAR ===================== */
/* ===================== FIXED NAVBAR ===================== */
.custom-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
  background: #111827;
  padding: 18px 0;
  transition: padding .28s ease, box-shadow .28s ease;
  box-shadow: 0 8px 28px rgba(0,0,0,0.25);
}

/* Shrink effect */
.custom-navbar.shrink {
  padding: 10px 0;
  box-shadow: 0 12px 35px rgba(0,0,0,0.35);
}

/* Brand logo resize */
.custom-navbar .navbar-brand img {
  height: 44px;
  transition: height .28s ease;
}

.custom-navbar.shrink .navbar-brand img {
  height: 36px;
}


.custom-navbar.sticky {
  position: sticky;
  top: 0;
}


.custom-navbar .navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}



.custom-navbar.shrink .navbar-brand img {
  height: 36px;
}

.custom-navbar .custom-navbar-nav li a {
  color: #ffffff !important;
  opacity: .88;
  padding: 8px 12px;
  font-weight: 600;
  transition: color .18s ease, opacity .18s ease;
}

.custom-navbar .custom-navbar-nav li a:hover,
.custom-navbar .custom-navbar-nav li.active a {
  opacity: 1;
  color: #f96a0d !important; /* highlight color, optional */
}

.custom-navbar .custom-navbar-cta li a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  transition: background .2s ease;
}

.custom-navbar .custom-navbar-cta li a:hover {
  background: rgba(255,255,255,0.12);
}




/* mobile toggler: nicer animated hamburger */
.navbar-toggler {
  border: none;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  transition: background .18s ease, transform .18s ease;
}
.navbar-toggler:focus {
  outline: none;
  box-shadow: 0 6px 18px rgba(12,12,12,0.12);
}

/* hamburger lines */
.navbar-toggler .bar {
  position: relative;
  width: 20px;
  height: 2px;
  background: #fff;
  display: inline-block;
  transition: transform .28s ease, opacity .18s ease;
}
.navbar-toggler .bar:before,
.navbar-toggler .bar:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: #fff;
  transition: transform .28s ease, top .28s ease, bottom .28s ease;
}
.navbar-toggler .bar:before { top: -7px; }
.navbar-toggler .bar:after  { bottom: -7px; }

/* active state -> cross */
.navbar-toggler.collapsed .bar { transform: rotate(0); }
.navbar-toggler:not(.collapsed) .bar { transform: rotate(45deg); }
.navbar-toggler:not(.collapsed) .bar:before { transform: rotate(-90deg); top: 0; }
.navbar-toggler:not(.collapsed) .bar:after  { opacity: 0; }

/* collapse menu panel (soft card) */
.navbar-collapse {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}







/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: calc(60vh - 40px);
  display: flex;
   background: #111827;
  align-items: center;
  justify-content: flex-start; /* left-aligned like Shopify */
  overflow: hidden;
  color: #ffffff;
  padding-left: 15px; /* spacing from left */
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
}

.hero video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  min-width: 100%;
  height: auto;
  min-height: 100%;
  z-index: 0;
  transform: translate(-50%, -50%);
  object-fit: cover;
  filter: brightness(0.6);
}

.hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  opacity: 0; /* for animation */
}

.hero p {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
  opacity: 0; /* for animation */
}

/* HERO BUTTONS */
.hero .btn {
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 25px;
  transition: all .3s ease;
  opacity: 1; /* for animation */
}


.hero .btn-primary {
  background-color: #ffffff;
  border: none;
  color: #000;
}

.hero .btn-primary:hover {
  background-color: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
}

.hero .btn-outline-light {
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
}

.hero .btn-outline-light:hover {
  background: #ffffff;
  color: #111827;
}

/* ===== ANIMATIONS ===== */
@keyframes slideUp {
  0% { transform: translateY(30px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

.animate-slide-up {
  animation: slideUp 0.8s cubic-bezier(.2,.9,.2,1) forwards;
}

.animate-slide-up




/* typing cursor */
#typing-text::after {
  content: "|";
  margin-left: 6px;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 50%, 100% { opacity: 1; }
  25%, 75% { opacity: 0; }
}

/* subtitle fade */
.hero-sub {
  opacity: 1;


  font-size: 1.15rem;
  max-width: 520px;
  color: rgba(255,255,255,0.85);
  opacity: 0;
 
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}




/* Gradient highlight text */
.gradient-text {
  background: linear-gradient(90deg, #ff7a18, #ffb347, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  margin-left: 8px;
}

/* Cursor */
#typed-word::after {
  content: "|";
  margin-left: 6px;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 50%, 100% { opacity: 1; }
  25%, 75% { opacity: 0; }
}












/* =========================
   PRODUCT SECTION – PREMIUM
   THEME: #111827
   ========================= */

.product-section {
  padding: 80px 0;
 
}

/* Grid spacing fix */
#products-row > div {
  margin-bottom: 28px;
}

/* Product card */
.product-item {
  position: relative;
  background: #ffffff;
 
  border-radius: 20px;
  padding: 16px;
  height: 100%;
  box-shadow: 0 18px 40px rgba(17,24,39,.08);
  overflow: hidden;
  transform: translateY(18px);
  opacity: 0;
  transition:
    transform .5s cubic-bezier(.2,.9,.2,1),
    opacity .5s ease,
    box-shadow .35s ease;
}

/* Fade-in active */
.product-item.is-visible {
  transform: translateY(0);
  opacity: 1;
}

/* Hover lift (desktop) */
@media (hover: hover) {
  .product-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 35px 65px rgba(17,24,39,.18);
  }
}

/* Product image */
.product-thumbnail {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 16px;
  transition: transform .45s ease;
}

/* Zoom image on hover (desktop only) */
@media (hover: hover) {
  .product-item:hover .product-thumbnail {
    transform: scale(1.07);
  }
}

/* Title */
.product-title {
  font-size: .95rem;
  font-weight: 600;
  margin: 14px 0 6px;
  color: #111827;
  line-height: 1.35;
}

/* Price */
.product-price {
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
}

/* Product link */
.product-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* Button overlay */
.icon-cross {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(17,24,39,.75),
    rgba(17,24,39,.25),
    transparent
  );
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 18px;
  opacity: 0;
  transition: opacity .35s ease;
}

/* Show overlay on hover (desktop) */
@media (hover: hover) {
  .product-item:hover .icon-cross {
    opacity: 1;
  }
}

/* Buy button */
.buy-now {
  width: 100%;
  border-radius: 14px;
  padding: 10px 14px;
  font-weight: 600;
  background: #111827;
  border: none;
  color: #ffffff;
  transition: transform .25s ease, box-shadow .25s ease;
}

/* Button hover */
.buy-now:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(17,24,39,.45);
}

/* =========================
   MOBILE: 2 PER ROW + BTN VISIBLE
   ========================= */
@media (max-width: 767px) {
  /* Force 2 per row */
  #products-row > div {
    width: 50%;
  }

  .product-thumbnail {
    height: 170px;
  }

  /* Always show button */
  .icon-cross {
    opacity: 1;
    background: none;
    position: static;
    padding: 12px 0 0;
  }

  .buy-now {
    padding: 9px;
    border-radius: 12px;
  }
}








.why-choose-section {
  padding: 7rem 0; }
  .why-choose-section .img-wrap {
    position: relative; }
    .why-choose-section .img-wrap:before {
      position: absolute;
      content: "";
      width: 255px;
      height: 217px;
      background-image: url("../images/dots-yellow.svg");
      background-repeat: no-repeat;
      background-size: contain;
      -webkit-transform: translate(-40%, -40%);
      -ms-transform: translate(-40%, -40%);
      transform: translate(-40%, -40%);
      z-index: -1; }
    .why-choose-section .img-wrap img {
      border-radius: 20px; }

.feature {
  margin-bottom: 30px; }
  .feature .icon {
    display: inline-block;
    position: relative;
    margin-bottom: 20px; }
    .feature .icon:before {
      content: "";
      width: 33px;
      height: 33px;
      position: absolute;
      background: rgba(59, 93, 80, 0.2);
      border-radius: 50%;
      right: -8px;
      bottom: 0; }
  .feature h3 {
    font-size: 14px;
    color: #272e3b; }
  .feature p {
    font-size: 14px;
    line-height: 22px;
    color: #6a6a6a; }

.we-help-section {
  padding: 7rem 0; }
 
    .we-help-section .imgs-grid:before {
      position: absolute;
      content: "";
      width: 255px;
      height: 217px;
      background-image: url("../images/dots-green.svg");
      background-size: contain;
      background-repeat: no-repeat;
      -webkit-transform: translate(-40%, -40%);
      -ms-transform: translate(-40%, -40%);
      transform: translate(-40%, -40%);
      z-index: -1; }
    .we-help-section .imgs-grid .grid {
      position: relative; }
      .we-help-section .imgs-grid .grid img {
        border-radius: 20px;
        max-width: 100%; }
      .we-help-section .imgs-grid .grid.grid-1 {
        -ms-grid-column: 1;
        -ms-grid-column-span: 18;
        grid-column: 1 / span 18;
        -ms-grid-row: 1;
        -ms-grid-row-span: 27;
        grid-row: 1 / span 27; }
      .we-help-section .imgs-grid .grid.grid-2 {
        -ms-grid-column: 19;
        -ms-grid-column-span: 27;
        grid-column: 19 / span 27;
        -ms-grid-row: 1;
        -ms-grid-row-span: 5;
        grid-row: 1 / span 5;
        padding-left: 20px; }
      .we-help-section .imgs-grid .grid.grid-3 {
        -ms-grid-column: 14;
        -ms-grid-column-span: 16;
        grid-column: 14 / span 16;
        -ms-grid-row: 6;
        -ms-grid-row-span: 27;
        grid-row: 6 / span 27;
        padding-top: 20px; }

.custom-list {
  width: 100%; }
  .custom-list li {
    display: inline-block;
    width: calc(50% - 20px);
    margin-bottom: 12px;
    line-height: 1.5;
    position: relative;
    padding-left: 20px; }
    .custom-list li:before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      border: 2px solid#111827;
      position: absolute;
      left: 0;
      top: 8px; }

.popular-product {
  padding: 0 0 7rem 0; }
  .popular-product .product-item-sm h3 {
    font-size: 14px;
    font-weight: 700;
    color: #272e3b; }
  .popular-product .product-item-sm a {
    text-decoration: none;
    color: #272e3b;
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease; }
    .popular-product .product-item-sm a:hover {
      color: rgba(47, 47, 47, 0.5); }
  .popular-product .product-item-sm p {
    line-height: 1.4;
    margin-bottom: 10px;
    font-size: 14px; }
  .popular-product .product-item-sm .thumbnail {
    margin-right: 10px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 120px;
    flex: 0 0 120px;
    position: relative; }
    .popular-product .product-item-sm .thumbnail:before {
      content: "";
      position: absolute;
      border-radius: 20px;
      background:#bbc0cd;
      width: 98px;
      height: 98px;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      z-index: -1; }
/* Staggered fade-up animation for Popular Features */
.popular-product .animate-item {
  opacity: 0;
  transform: translateY(12px);
  animation: popFadeUp 520ms cubic-bezier(.2,.9,.2,1) forwards;
}

/* stagger delays — adjusts for 7 items */
.popular-product .row > .col-12:nth-child(1)  .animate-item { animation-delay: 0ms; }
.popular-product .row > .col-12:nth-child(2)  .animate-item { animation-delay: 80ms; }
.popular-product .row > .col-12:nth-child(3)  .animate-item { animation-delay: 160ms; }
.popular-product .row > .col-12:nth-child(4)  .animate-item { animation-delay: 240ms; }
.popular-product .row > .col-12:nth-child(5)  .animate-item { animation-delay: 320ms; }
.popular-product .row > .col-12:nth-child(6)  .animate-item { animation-delay: 400ms; }
.popular-product .row > .col-12:nth-child(7)  .animate-item { animation-delay: 480ms; }

@keyframes popFadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Hover subtle lift to match product style */
.popular-product .product-item-sm:hover .thumbnail img {
  transform: translateY(-6px);
  transition: transform .28s ease;
}

.before-footer-section {
  padding: 7rem 0 12rem 0 !important; }

.blog-section {
  padding: 7rem 0 12rem 0; }
  .blog-section .post-entry a {
    text-decoration: none; }
  .blog-section .post-entry .post-thumbnail {
    display: block;
    margin-bottom: 20px; }
    .blog-section .post-entry .post-thumbnail img {
      border-radius: 20px;
      -webkit-transition: .3s all ease;
      -o-transition: .3s all ease;
      transition: .3s all ease; }
  .blog-section .post-entry .post-content-entry {
    padding-left: 15px;
    padding-right: 15px; }
    .blog-section .post-entry .post-content-entry h3 {
      font-size: 16px;
      margin-bottom: 0;
      font-weight: 600;
      margin-bottom: 7px; }
    .blog-section .post-entry .post-content-entry .meta {
      font-size: 14px; }
      .blog-section .post-entry .post-content-entry .meta a {
        font-weight: 600; }
  .blog-section .post-entry:hover .post-thumbnail img, .blog-section .post-entry:focus .post-thumbnail img {
    opacity: .7; }

.footer-section {
  padding: 80px 0;
  background: #ffffff; }
  .footer-section .relative {
    position: relative; }
  .footer-section a {
    text-decoration: none;
    color: #272e3b;
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease; }
    .footer-section a:hover {
      color: rgba(47, 47, 47, 0.5); }
  .footer-section .subscription-form {
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
    margin-top: 100px; }
    @media (min-width: 992px) {
      .footer-section .subscription-form {
        margin-top: 0px;
        margin-bottom: 80px; } }
    .footer-section .subscription-form h3 {
      font-size: 18px;
      font-weight: 500;
      color:#111827; }
    .footer-section .subscription-form .form-control {
      height: 50px;
      border-radius: 10px;
      font-family: "Inter", sans-serif; }
      .footer-section .subscription-form .form-control:active, .footer-section .subscription-form .form-control:focus {
        outline: none;
        -webkit-box-shadow: none;
        box-shadow: none;
        border-color:#111827;
        -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.2);
        box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.2); }
      .footer-section .subscription-form .form-control::-webkit-input-placeholder {
        font-size: 14px; }
      .footer-section .subscription-form .form-control::-moz-placeholder {
        font-size: 14px; }
      .footer-section .subscription-form .form-control:-ms-input-placeholder {
        font-size: 14px; }
      .footer-section .subscription-form .form-control:-moz-placeholder {
        font-size: 14px; }
    .footer-section .subscription-form .btn {
      border-radius: 10px !important; }
  .footer-section .sofa-img {
    position: absolute;
   top:-150px;
    z-index: 1;
    right: 0; }
    .footer-section .sofa-img img {
      max-width: 200px; }
  .footer-section .links-wrap {
    margin-top: 0px; }
    @media (min-width: 992px) {
      .footer-section .links-wrap {
        margin-top: 54px; } }
    .footer-section .links-wrap ul li {
      margin-bottom: 10px; }

    .footer-logo{
   height: 44px;
  width: 40px;
  display: block;
  transition: height .28s ease;
}
  .footer-section .custom-social li {
    margin: 2px;
    display: inline-block; }
    .footer-section .custom-social li a {
      width: 40px;
      height: 40px;
      text-align: center;
      line-height: 40px;
      display: inline-block;
      background: #dce5e4;
      color:#111827;
      border-radius: 50%; }
      .footer-section .custom-social li a:hover {
        background:#111827;
        color: #ffffff; }
  .footer-section .border-top {
    border-color: #dce5e4; }
    .footer-section .border-top.copyright {
      font-size: 14px !important; }

.untree_co-section {
  padding: 7rem 0; }

.form-control {
  height: 50px;
  border-radius: 10px;
  font-family: "Inter", sans-serif; }
  .form-control:active, .form-control:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color:#111827;
    -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.2); }
  .form-control::-webkit-input-placeholder {
    font-size: 14px; }
  .form-control::-moz-placeholder {
    font-size: 14px; }
  .form-control:-ms-input-placeholder {
    font-size: 14px; }
  .form-control:-moz-placeholder {
    font-size: 14px; }

.service {
  line-height: 1.5; }
  .service .service-icon {
    border-radius: 10px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50px;
    flex: 0 0 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background:#111827;
    margin-right: 20px;
    color: #ffffff; }

textarea {
  height: auto !important; }

.site-blocks-table {
  overflow: auto; }
  .site-blocks-table .product-thumbnail {
    width: 200px; }
  .site-blocks-table .btn {
    padding: 2px 10px; }
  .site-blocks-table thead th {
    padding: 30px;
    text-align: center;
    border-width: 0px !important;
    vertical-align: middle;
    color: rgba(0, 0, 0, 0.8);
    font-size: 18px; }
  .site-blocks-table td {
    padding: 20px;
    text-align: center;
    vertical-align: middle;
    color: rgba(0, 0, 0, 0.8); }
  .site-blocks-table tbody tr:first-child td {
    border-top: 1px solid#111827 !important; }
  .site-blocks-table .btn {
    background: none !important;
    color: #272e3b;
    border: none;
    height: auto !important; }

.site-block-order-table th {
  border-top: none !important;
  border-bottom-width: 1px !important; }

.site-block-order-table td, .site-block-order-table th {
  color: #272e3b; }

.couponcode-wrap input {
  border-radius: 10px !important; }

.text-primary {
  color:#111827 !important; }

.thankyou-icon {
  position: relative;
  color:#111827; }
  .thankyou-icon:before {
    position: absolute;
    content: "";
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(59, 93, 80, 0.2); }
