  :root {
      --bg: #f3e2cf;
      --bg-2: #f7eadb;
      --sand: #e6d1b7;
      --paper: #fffaf2;
      --ink: #5f4323;
      --primary: #c0843d;
      --accent: #4289c4;
      --blue: #2471af;
      --muted: #6d5139;
      --card: #f4e8d9;
      --shadow: 13px 17px 22px #4b2d0966;
      --radius: 18px;
      --shadow-soft: 4px 4px 6px #7f5d3263;
      --font-main: Inter, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji";
      --font-heading: "Playfair Display", serif;

      --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
      --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.15);
      --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.2);
      --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);

      --cd: url('../assets/default.png'), auto;
      --cp: url('../assets/pointer.png'), pointer;

  }


  main {
      /*overflow-x: hidden;*/
  }

  .clay-wrapper {
      position: relative;
      /* anchor for absolute children */
      overflow: hidden;
      /* clip everything that goes outside */
      width: 100%;
      /* full viewport */
      height: 100%;
      /* or whatever height you need */
  }

  @keyframes float {

      0%,
      100% {
          transform: translateY(0);
      }

      50% {
          transform: translateY(-10px);
          /* Adjust the value to control the hover height */
      }
  }

  * {
      box-sizing: border-box;
      /*outline: 1px solid red;*/
  }

  html,
  body {
      margin: 0;
      padding: 0;

      max-width: 100vw;
      /* prevent 100vw causing extra width on mobile */
      touch-action: pan-y;
      scroll-behavior: smooth;
      cursor: var(--cd);
  }

  body {
      margin: 0;
      padding: 0;
      color: var(--ink);
      background-image: url(../assets/bg2.jpg);
      background-color: #eecca1;
      font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji";
      background-size: cover;
      overflow-x: hidden;
      line-height: 1.55;
      position: static !important;

  }

  a {
      color: inherit;
      text-decoration: none;
      cursor: var(--cp) !important;
  }

  img {
      max-width: 100% !important;
      display: block;
      height: 100%;
      border-radius: inherit;
      object-fit: cover;
  }

  .container {
      width: min(1120px, 92vw);
      margin-inline: auto;
  }

  /* Header */
  header {
      position: relative;
      padding-top: 3rem;
      z-index: 30;
      /* backdrop-filter: saturate(1.2) blur(10px); */
      background: rgb(247 234 219 / 0%);
      /* border-bottom: 1px solid rgba(0, 0, 0, .06);*/
  }

  .background-hero {
      background: url(../assets/banner.png);
      height: 100%;
      background-size: cover;
      width: 100%;
      z-index: -2;
      position: absolute;
      background-repeat: no-repeat;
      background-position-y: bottom;
      top: -83px;
  }

  .rope-hero {
      position: absolute;
      background: url(../assets/rope.png);
      width: 250px;
      height: 250px;
      background-size: contain;
      background-repeat: no-repeat;
      right: -11rem;
      bottom: 4rem;
      z-index: 50;
      animation: float 8s ease infinite;
      transition: 0s ease;

  }

  .rope-hero-2 {
      position: absolute;
      background: url(../assets/rope2.png) no-repeat;
      background-size: contain;
      width: 318px;
      height: 300px;
      z-index: 50;

      left: 0;
      /* anchor to screen edge */
      transform: translateX(-25rem) scale(1.5);
      /* push off-screen + scaling */

      will-change: transform;
      /* performance hint for GSAP */

  }

  .wood-hero {
      position: absolute;
      background: url(../assets/stamp.png);
      width: 250px;
      height: 200px;
      background-size: contain;
      background-repeat: no-repeat;
      left: -4rem;
      bottom: -3rem;
      z-index: 50;
      animation: float 6s ease infinite;
      transition: 0s;

  }






  /*header */


  .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: .9rem 0;
  }

  .brand {
      display: flex;
      align-items: center;
      gap: .6rem;
      font-weight: 700;
      flex-direction: row;
      justify-content: flex-start;
      width: auto;
  }

  .brand img {
      object-fit: contain;
  }

  .brand .logo {
      height: 47px;
      filter: brightness(0.7);
      z-index: -1;
  }

  .fav img {
      object-fit: contain;
  }

  .navlinks {
      display: flex;
      gap: 1.2rem;
  }

  .navlinks a {
      padding: .6rem .8rem;
      border-radius: 999px;
      transition: .2s background;
  }

  .navlinks a:hover {
      background: rgba(0, 0, 0, .06);
  }



  .cta {
      background: var(--ink);
      color: var(--bg) !important;
      padding: .6rem 1rem;
      border-radius: 999px;
      font-weight: 600
  }

  /* Hero */
  .hero {
      position: relative;
      overflow: hidden
  }

  .hero .wrap {
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 2rem;
      /* padding: 3.2rem 0 2.2rem */
  }

  .eyebrow {
      letter-spacing: .15em;
      text-transform: uppercase;
      color: var(--muted);
      font-weight: 600;
      font-size: .85rem
  }

  h1 {
      cursor: var(--cd);
      transition: 0.2s ease-out;
      font-family: "Playfair Display", serif;
      font-size: clamp(1.8rem, 3vw + 1rem, 3.1rem);
      line-height: 1.1;
      margin: .4rem 0 1rem;

  }

  .lead {
      font-size: 1.05rem;
      color: #5a4b40
  }

  .actions {
      display: flex;
      gap: .8rem;
      margin-top: 1.1rem;
      align-items: center;
  }

  .btn {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      border-radius: 12px;
      padding: .8rem 1.1rem;
      font-weight: 600;
      cursor: var(--cp);
      border: 0
  }

  .btn.primary {
      background: var(--primary);
      color: #fff;
      /*box-shadow:var(--shadow)*/
  }

  .btn.ghost {
      background: transparent;
      border: 2px dashed #ad8b5f;
      color: var(--ink);
      padding: 0rem 1rem;
      height: 55px;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  }

  h1:hover {
      text-shadow: 5px 13px 11px #613a0c73;
      transform: translate(-3px, -6px);
  }

  .heroCard {
      position: relative;
      border-radius: 24px;
      padding: 0rem;
      margin-left: 3rem;
      margin-top: 3rem;
      width: 90%;
      transform: rotate(-2deg) scale(1.25);

  }

  .heroCardfeatured {
      width: auto;
      position: relative;
      justify-items: center;
      max-height: 29rem;
      height: 100%;
      right: 0 !important;
      z-index: -1;
      opacity: 1;
      transform: rotate3d(37, 121, -54, 27deg);
      transition: transform 0.8s ease;
  }

  /*.heroCard:hover{transform:rotate(0deg) scale(1.25) translateY(-3px);}*/
  .rope {
      position: absolute;
      inset: auto -80px -80px auto;
      width: 220px;
      height: 220px;
      border: 12px solid #d2b792;
      border-radius: 30px;
      opacity: .6;
      rotate: 10deg
  }

  .stamp {
      position: absolute;
      top: -14px;
      right: -14px;
      background: #175ea4;
      color: #fff;
      padding: .45rem .7rem;
      font-weight: 700;
      border-radius: 12px
  }

  .priceTag {
      position: absolute;
      bottom: -12px;
      left: -12px;
      background: #fff;
      border: 1px solid #ead8c3;
      padding: .35rem .6rem;
      border-radius: 10px;
      box-shadow: var(--shadow)
  }

  /* Section shells */
  section {
      padding: 2.4rem 0
  }

  .section-title {
      display: flex;
      align-items: center;
      gap: .6rem;
      font-size: xx-large;
      line-height: 2.2rem;
      text-transform: uppercase;
      font-family: auto;
  }

  .section-title h2 {
      font-family: "Playfair Display", serif;
      font-size: 1.8rem;
      margin-bottom: 2rem;
  }

  /* Product cards */
  .grid {
      display: grid;
      gap: 1rem
  }

  .products {
      grid-template-columns: repeat(4, minmax(0, 1fr));
      margin-top: 2rem;
  }

  @media (max-width:1000px) {
      .hero .wrap {
          grid-template-columns: 1fr
      }

      .products {
          grid-template-columns: repeat(2, minmax(0, 1fr))
      }
  }

  @media (max-width:620px) {
      .products {
          grid-template-columns: 1fr
      }
  }

  .card {
      background: var(--card);
      border-radius: var(--radius);
      padding: 1rem;
      box-shadow: var(--shadow);
      position: relative;
      border: 0px solid #e7d6c0;
      transform-style: preserve-3d;
      transition: 0s ease
  }

  .card:hover {
      transform: translateY(-2px)
  }

  .badge {
      position: absolute;
      top: .8rem;
      left: .8rem;
      background: #1176cf;
      padding: .2rem .5rem;
      border-radius: 999px;
      font-size: .75rem;
      opacity: 0.7;
      color: white;
      border: 1px solid #ffffff;
  }

  .fav {
      position: absolute;
      top: .8rem;
      right: .8rem;
      width: 34px;
      height: 34px;
      aspect-ratio: 1;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: none;
      border: 0px solid #ead8c3;
      cursor: var(--cp);
      padding: 7px;
  }

  .fav.active {
      background: #ffefef;
      border-color: #f5c6c6
  }

  .stars {
      color: #e0a100;
      font-size: .95rem;
      position: absolute;
      bottom: 3.5rem;
  }

  .price {
      font-weight: 800;
      width: 55%;
      text-align: center;
      transition: 0.2s ease-in;
  }

  .actions-row {
      position: absolute;
      margin-top: 24px;
      display: flex;
      gap: .5rem;
      width: 100%;
      /* border: 1rem16pxsolid; */
      box-sizing: border-box;
      background-color: #fde5c5;
      border-radius: 0px 0px 10px 12px;
      bottom: -20px;
      border-bottom: 5px solid #654c2e;

      left: 0;
  }

  .order {
      width: 65%;
      border-radius: 0px 10px;
      background-color: var(--muted) !important;
  }

  #order {
      padding: 1rem 3rem 6rem !important;
  }

  /* About steps */
  .steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0rem;
      filter: hue-rotate(-2deg) saturate(0.9);
      opacity: 0.8;
  }

  .step {
      border-radius: var(--radius);
      padding: 0.5rem;
      text-align: center;
  }

  .step video {
      width: 100%;
      height: auto;
      border-radius: var(--radius);
      display: block;
  }


  @media (max-width:900px) {
      .steps {
          grid-template-columns: repeat(2, 1fr)
      }
  }

  /* Featured block */
  .featured {
      padding: 1rem 8rem;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.2rem;
      align-items: center;
  }

  .deal {
      padding: 1rem;
      height: 100%;
  }

  .pill {
      display: inline-block;
      background: #5797cc;
      color: #fff;
      padding: .25rem .5rem;
      border-radius: 999px;
      font-size: 1rem;
      margin-top: 1rem;
  }

  .pill2 {
      display: inline-block;
      background: var(--ink);
      color: #fff;
      padding: .25rem .5rem;
      border-radius: 999px;
      font-size: 1rem;
      margin-left: 1rem;
      margin-top: 1rem;

  }

  @media (max-width:900px) {
      .featured {
          grid-template-columns: 1fr
      }
  }

  /* Accordion */
  .accordion {
      display: grid;
      gap: .6rem
  }

  .acc-item {
      background: #c5a57c;
      /* border: 1px solid #ead8c3; */
      border-radius: 12px;
      overflow: hidden;
  }


  .acc-head {
      display: flex;
      padding: 1rem;
      cursor: var(--cp);
      border: none;
      background: #cfaf85;
      width: 100%;
      color: #5f4323;
      font-weight: 100;
      font-size: smaller;
      text-align: left !important;
      /* align-content: center; */
      flex-wrap: nowrap;
      flex-direction: row;
  }


  .acc-head h3 {
      margin: 0;
      font-size: 1rem;
      text-align: left;
      font-weight: 200;
      font-family: 'Inter';
  }

  .acc-body {
      padding: 1rem;
      max-height: 0;
      overflow: hidden;
      background-color: var(--bg);
      transition: .3s ease;
      padding: 0 1rem
  }

  .acc-item.open .acc-body {
      max-height: 420px;
      padding: 1rem;
  }

  /* Gallery */
  .gallery {
      position: relative;
      background: var(--accent);
      box-shadow: var(--shadow);
      border: 0px solid #ead8c3;
      border-radius: var(--radius);
      padding: 1rem;
      overflow: hidden
  }

  .track {
      display: flex;
      gap: 1rem;
      transition: transform .4s cubic-bezier(.2, .7, .2, 1);
      will-change: transform
  }

  .slide {
      min-width: 60%;
      background: #fff;
      border-radius: 14px;
      box-shadow: var(--shadow);
      overflow: hidden
  }

  @media (max-width:800px) {
      .slide {
          min-width: 85%
      }
  }

  .gal-ctrl {
      position: absolute;
      inset: auto 1rem 1rem auto;
      display: flex;
      gap: .4rem
  }

  /* Form */
  form {
      display: grid;
      gap: .5rem
  }

  .field {
      display: grid;
      gap: .35rem
  }

  input,
  textarea {
      padding: .85rem 1rem;
      border-radius: 12px;
      border: 1px solid #ae7321;
      background: #eecca1;
      font-family: var(--font-main);
      outline: none;
      color: #5f4323;
  }

  input::placeholder,
  textarea::placeholder {
      color: #b58f64;
  }

  textarea {
      min-height: 130px;
      resize: vertical
  }

  .note {
      font-size: .85rem;
      color: var(--muted)
  }

  /* Footer */
  .paperbar {
      height: 14px;
      background: repeating-linear-gradient(90deg, #c9a98a 0 60px, #b9926f 60px 62px);
      border-radius: 8px
  }

  /* Toast */
  .toast {
      position: fixed;
      bottom: 18px;
      left: 50%;
      translate: -50% 140%;
      background: #557dc6;
      color: #fff;
      padding: .7rem 1rem;
      border-radius: 14px;
      text-align: center;
      box-shadow: var(--shadow);
      z-index: 99999999;
      transition: translate .3s ease;
  }

  .toast.show {
      translate: -50% -50%
  }


  .craft-btn {
      background: url(../assets/button.png) !important;
      background-size: contain !important;
      background-repeat: no-repeat !important;
      width: 219px !important;
      height: 63px !important;
      border-radius: 0px !important;
      box-shadow: none !important;
      justify-content: center !important;
      font-size: 17px !important;
      color: #e9dfd1 !important;
      font-weight: 500 !important;
      filter: hue-rotate(1deg) saturate(0.6);
      transition: 0.3s ease;
      font-size: 14px !important;
  }

  .craft-btn:hover {
      filter: hue-rotate(0deg) saturate(0.9);
      transform: translate(-1px, -3px);
  }

  .product-image {
      width: 230px !important;
      height: 230px !important;
      object-fit: contain !important;
      margin-top: -45px !important;
  }

  .card-shop-bg {
      background-image: url(../assets/shoplayer.png) !important;
      background-repeat: no-repeat !important;
      background-size: contain !important;
      /* border: none !important; */
      background-position: top;
      background-color: #fff2dd;
      justify-items: center;
      border-bottom: 5px solid #654c2e;
      box-sizing: border-box;
      margin-top: 2rem;
      min-height: 354px;

  }

  h3 {
      text-align: center;
      width: 100%;
      overflow-wrap: break-word;
  }

  .about-desc {
      font-style: italic;
      margin-bottom: 2rem;
  }

  .clay-item1 {
      background: url(../assets/clay1.png) no-repeat;
      background-size: contain;
      width: 156px;
      height: 285px;
      position: absolute;
      right: 0;
      /* anchor to viewport edge */
      transform: translateX(8rem);
      /* start off-screen */
      will-change: transform;
  }

  .clay-item2 {
      background: url(../assets/clay2.png) no-repeat;
      background-size: contain;
      width: 146px;
      height: 275px;
      position: absolute;
      z-index: 2;
      right: 0;
      transform: translateX(8rem) translateY(-1rem);
      /* offscreen + margin-top equivalent */
      will-change: transform;
  }

  .clay-item3 {
      background: url(../assets/clay3.png) no-repeat;
      background-size: contain;
      width: 146px;
      height: 275px;
      position: absolute;
      z-index: 2;
      left: 0;
      /* anchor to viewport edge */
      transform: translateX(-10rem) translateY(10rem);
      /* offscreen + margin-top equivalent */
      will-change: transform;
  }


  .paper-item1 {
      background: url(../assets/Paper2.png);
      width: 500px;
      height: 98px;
      background-size: contain;
      position: absolute;
      z-index: -1;
      margin-top: 4.5rem;
      background-repeat: no-repeat;
      left: calc(50% - 250px);
  }


  .ft-background {
      background-image: url(../assets/banner2.png);
      background-size: cover;
      position: absolute;
      background-repeat: no-repeat;
      pointer-events: none;
      width: 100%;
      left: 0;
      margin-top: 5rem;
      transform: translateY(15rem);
      height: 100%;
      z-index: -1;
  }

  .panel {
      opacity: 0;
      filter: blur(4px);
      transform: translateY(50px);
  }

  .f-title {
      font-weight: bold;
      font-size: 24px;
      line-height: 25px;
      /* text-transform: uppercase; */
      font-family: fangsong;
  }


  /* Gallery */

  .container2 {
      display: flex;
      flex: 1;
      max-width: 1440px;
      padding: 0 3rem;
      margin: 0 auto;
      overflow: auto;
      align-items: flex-start;
      justify-content: center;
  }

  .gal-bg {
      background: var(--accent);
      border-radius: var(--radius);
      padding: 2rem;
      color: var(--bg);
  }


  .cardd {
      flex: 1 1 1%;
      position: relative;
      opacity: 0.8;
      transition: flex 600ms cubic-bezier(0.25, 1, 0.5, 1), opacity 250ms ease;

      &:hover {
          flex-basis: 40%;
      }

      &__inner {
          margin: 0.25rem;
          background: #fff;
          border-radius: 8px;
          display: flex;
          justify-content: center;
          align-items: center;
          overflow: hidden;
      }

      picture {
          width: 100%;
          height: 0;
          padding-bottom: 600px;
          overflow: hidden;
          position: relative;

          img {
              position: absolute;
              top: 0;
              left: 0;
              width: 100%;
              height: 100%;
              object-fit: cover;
              object-position: center;
          }
      }

      &.is-active,
      &:hover {
          opacity: 1;
      }

      /*Card margin-top pattern - simplified*/
      &:nth-child(2),
      &:nth-child(5),
      &:nth-child(9) {
          margin-top: 0;
      }

      &:nth-child(2),
      &:nth-child(4),
      &:nth-child(6),
      &:nth-child(8),
      &:nth-child(10) {
          margin-top: 2.5%;
      }

      &:nth-child(3),
      &:nth-child(7) {
          margin-top: 5%;
      }
  }

  .cardd__inner {
      margin: 0.25rem;
      background: #fff;
      border-radius: 8px;
      display: flex;
      justify-content: center;
      align-items: center;
      overflow: hidden;
  }

  .bwayblue {
      background-image: url(../assets/bway.png);
      width: 100%;
      height: 100%;
      transform: translateY(-447px);
      background-repeat: no-repeat;
      background-size: contain;
      position: absolute;
      /* bottom: 0; */
      z-index: -1;
  }





  .heading-section {
      text-align: center;
  }

  .sub-heading {
      font-size: 12px;
      display: block;
      font-family: 'Playfair Display';
      font-weight: 600;
      color: #5f4323;
      /* text-transform: uppercase; */
      letter-spacing: 2px;
  }

  .heading-section h2 {
      font-size: 28px;
      font-weight: 600;
      padding-top: 10px;
      padding-bottom: 15px;
      font-family: "Playfair Display", serif;
      text-shadow: var(--shadow);
  }

  .testimonial-box {
      display: block;
      position: relative;
      padding: 30px 20px;
      background: var(--bg);
      border: 1px solid rgba(0, 0, 0, .03);
      border-radius: 18px;
      box-shadow: var(--shadow-soft);
  }

  .user-img {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      position: relative;
      min-width: 80px;
      background-size: 100%;
  }

  .carousel-testimonial .item {
      padding: 30px 10px;
  }

  .quote {
      position: absolute;
      top: -23px;
      color: var(--accent);
      font-size: 27px;
  }

  .name {
      margin-bottom: 0;
      line-height: 14px;
      font-size: 17px;
      font-weight: 500;
  }

  .position {
      color: #a57233;
      font-size: 14px;
  }

  .carousel-testimonial .owl-nav {
      text-align: center;
  }

  .carousel-testimonial .owl-nav button.owl-next,
  .carousel-testimonial .owl-nav button.owl-prev {
      padding: 0 12px !important;
  }

  .carousel-testimonial .owl-nav button {
      outline: none;
      padding: 0;
  }

  .carousel-testimonial .owl-nav button.owl-next span,
  .carousel-testimonial .owl-nav button.owl-prev span {
      display: block;
      font-size: 40px;
      width: 25px;
      height: 25px;
      vertical-align: 0px;
      line-height: 16px;
  }

  .carousel-testimonial .owl-nav button.owl-next.disabled,
  .carousel-testimonial .owl-nav button.owl-prev.disabled {
      opacity: 0.5;
  }






  a {
      color: #fff;
      text-decoration: none;
  }

  .navlinks a {

      color: var(--ink);
  }

  .pg-footer {
      font-family: inherit;
      position: relative;
      margin-top: 4rem;
  }


  .footer {
      background-color: var(--blue);
      color: #fff;
  }

  .footer-wave-svg {
      background-color: transparent;
      display: block;
      height: 30px;
      position: relative;
      top: -81px;
      width: 100%;
  }

  .footer-wave-path {
      fill: #eecca1;
  }



  @media (min-width: 760px) {

      .footer-wave-svg {
          height: 50px;
      }
  }


  /* Reset moderne */
  *,
  *::before,
  *::after {
      box-sizing: border-box;
  }

  /* Layout */

  /* Footer */
  footer {
      color: var(--card);
      padding: 5rem 0 2rem;
      position: relative;
      overflow: hidden;
  }

  .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      gap: 2rem;
      margin-bottom: 2rem;
  }

  .footer-column {
      position: relative;
      z-index: 1;
  }

  .footer-column h3 {
      font-family: var(--font-heading);
      font-size: 1.5rem;
      font-weight: 600;
      margin-bottom: 1.5rem;
      position: relative;
      text-align: left;
      display: inline-block;
  }

  .footer-column h3::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: -8px;
      width: 50px;
      height: 3px;
      background: var(--accent);
      border-radius: 3px;
  }

  .footer-column p {
      color: white;
      margin-bottom: 1.5rem;
      font-size: 0.85rem;
      font-family: 'Inter';
      font-weight: 100;
  }

  .footer-links {
      list-style: none;
  }

  .footer-links li {
      margin-bottom: 0.75rem;
  }

  .footer-links a {
      color: #b3d2f1;
      text-decoration: none;
      font-size: 0.85rem;
      font-weight: 100;
      display: inline-block;
      transition: var(--transition);
      position: relative;
      padding-left: 1rem;
  }

  .footer-links a::before {
      content: '→';
      position: absolute;
      left: -5px;
      opacity: 0;
      transition: var(--transition);
      color: var(--accent);
  }

  .footer-links a:hover {
      color: #fff;
      padding-left: 1.5rem;
  }

  .footer-links a:hover::before {
      left: 0;
      opacity: 1;
  }

  /* Contact Info */
  .contact-info {
      margin-top: 1rem;
  }

  .contact-item {
      display: flex;
      align-items: flex-start;
      margin-bottom: 1rem;
  }

  .contact-item i {
      margin-right: 0.75rem;
      color: #f1a650;
      font-size: 1.1rem;
      margin-top: 3px;
  }

  .contact-item span {
      font-size: 0.75rem;
      line-height: 1.5;
      color: #d2e4f5;
  }

  /* Social Links */
  .social-links {
      display: flex;
      gap: 0.8rem;
      margin-top: 1.5rem;
      flex-wrap: wrap;
  }

  .social-link {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      transition: var(--transition);
      font-size: 1.1rem;
      position: relative;
      overflow: hidden;
      text-decoration: none;
  }

  .social-link::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(45deg, var(--accent), var(--primary));
      opacity: 0;
      transition: var(--transition);
  }

  .social-link:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-md);
  }

  .social-link:hover::after {
      opacity: 1;
  }

  .social-link i {
      position: relative;
      z-index: 1;
  }

  /* Newsletter */
  .newsletter {
      margin-top: 1.5rem;
  }

  .newsletter p {
      margin-bottom: 1rem;
  }

  .newsletter-form {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
  }

  .newsletter-input {
      flex: 1;
      min-width: 200px;
      padding: 0.85rem 1.25rem;
      border-radius: 50px;
      border: none;
      background: rgba(255, 255, 255, 0.1);
      color: #fff;
      font-size: 0.95rem;
      transition: var(--transition);
  }

  .newsletter-input::placeholder {
      color: var(--accent);
  }

  .newsletter-input:focus {
      outline: none;
      background: rgba(255, 255, 255, 0.15);
      box-shadow: 0 0 0 2px var(--accent);
  }

  .newsletter-btn {
      padding: 0.85rem 1.75rem;
      border-radius: 50px;
      border: none;
      background: var(--accent);
      color: #fff;
      font-weight: 600;
      cursor: var(--cp);
      transition: var(--transition);
      font-size: 0.95rem;
      flex-shrink: 0;
  }

  .newsletter-btn:hover {
      background: var(--primary);
      transform: translateY(-2px);
      box-shadow: var(--shadow-sm);
  }

  /* Copyright */
  .copyright {
      text-align: center;
      padding-top: 2rem;
      margin-top: 3rem;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      color: var(--gray);
      font-size: 0.85rem;
  }

  .copyright a {
      color: var(--accent);
      text-decoration: none;
      transition: var(--transition);
  }

  .copyright a:hover {
      color: var(--accent);
      text-decoration: underline;
  }

  /* Back to top button */
  .back-to-top {
      position: fixed;
      bottom: 2rem;
      right: 2rem;
      width: 50px;
      height: 50px;
      background: var(--accent);
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.25rem;
      cursor: var(--cp);
      opacity: 0;
      visibility: hidden;
      transition: var(--transition);
      z-index: 999;
      box-shadow: var(--shadow-md);
  }

  .back-to-top.visible {
      opacity: 1;
      visibility: visible;
  }

  .containerf {
      width: 100%;
      max-width: 1440px;
      margin: 0 auto;
      padding: 0 6rem;
  }

  .back-to-top:hover {
      background: var(--primary);
      transform: translateY(-5px);
  }

  /* Animations */
  @keyframes fadeIn {
      from {
          opacity: 0;
          transform: translateY(20px);
      }

      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  .footer-column {
      animation: fadeIn 0.6s ease forwards;
  }

  .footer-column:nth-child(1) {
      animation-delay: 0.1s;
  }

  .footer-column:nth-child(2) {
      animation-delay: 0.2s;
  }

  .footer-column:nth-child(3) {
      animation-delay: 0.3s;
  }

  .footer-column:nth-child(4) {
      animation-delay: 0.4s;
  }

  /* Responsive */
  @media (max-width: 992px) {
      .containerf {
          padding: 0 1.9rem;
      }

      .footer-grid {
          gap: 2rem;
      }
  }

  @media (max-width: 768px) {
      footer {
          padding: 3rem 0 2rem;
      }

      .footer-wave-svg {

          top: -48px;
      }

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

      .newsletter-form {
          flex-direction: column;
      }

      .newsletter-input,
      .newsletter-btn {
          width: 100%;
      }
  }

  @media (max-width: 576px) {
      .footer-grid {
          grid-template-columns: 1fr;
      }

      .footer-column h3::after {
          width: 40px;
      }
  }

  .footer-logo {
      width: 8rem;
      filter: brightness(5.5);
      transform: translateX(-20px);
  }



  .tag-group,
  .tag-scroller {
      display: flex;
      flex-wrap: wrap;
      gap: .5rem;
  }

  .tag {
      display: inline-block;
      padding: .3rem .8rem;
      border: 1px solid #a18360b3;
      border-radius: 20px;
      cursor: var(--cp);
      color: #502e05;
      font-size: .9rem;
      user-select: none;
      border-color: #b58c57;
      transition: all .2s ease;
      filter: grayscale(0.6);
  }

  .tag.active {
      background: #3886af;
      color: #fff8f1;
      border-color: #ffffff00;
      box-shadow: 0px 0px 8px #fdfeff;
      text-shadow: 0px 0px 8px #fdfeff;
      filter: grayscale(0);

  }


  *::-webkit-scrollbar-track {
      -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
      border-radius: 10px;
      background-color: #eecca1;
  }

  *::-webkit-scrollbar {
      width: 5px;
      background-color: #ffffff00;
  }

  *::-webkit-scrollbar-thumb {
      border-radius: 4px;
      -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
      background-color: #9e8259;
  }

  .cart-item {
      display: flex;
      gap: 1rem;
      flex-direction: row;
      flex-wrap: nowrap;
      justify-content: flex-start;
      align-items: center;
      margin-bottom: 1rem;
      border: 1px solid #ae7353;
      padding: 1rem;
      box-shadow: var(--shadow);
      border-radius: 10px;
      background: #d8b588;
  }

  #cartItems ul {
      margin: 0px !important;
      padding: 0;
  }

  .cart-item img {
      width: 90px;
      height: 80px;
      object-fit: cover;

  }

  .cart-left {
      display: flex;
      font-size: smaller;
      flex-direction: row;
      gap: 1.1rem;
      align-items: center;
  }

  .cart-item-price {
      font-weight: 700
  }



  .cart-item-name {
      width: 30%;
  }


  .hero-slide {
      width: 100%;
      height: 100%;
      position: absolute;
      /*background: linear-gradient(90deg, #eecca1, transparent);*/
  }

  .vadette {
      transform: translate(0rem, 3rem);
  }

  .hero-slide2 {
      width: 54%;
      left: 0;
      height: 100%;
      position: absolute;
      background: linear-gradient(90deg, #eecca1, transparent);
  }

  .rotated {
      transform: rotate3d(37, 121, -54, 0deg);
  }

  article {
      transform: rotate3d(65, 41, 18, 10deg);
      transition: transform 0.8s ease !important;
  }

  .filter-mobile {
      display: none;
      opacity: 0;
  }

  /* MOBILE DESIGN */
  @media (max-width: 768px) {

      .f-title {
          font-weight: bold;
          font-size: small;
          line-height: 1.2;
          margin-bottom: 2px !important;
      }

      p {
          font-size: small;
          line-height: 1.2;
          margin-top: 0.4rem;
          color: #3f270b;
      }

      .hero-slide {
          width: 100%;
          height: 100%;
          position: absolute;
          background: linear-gradient(90deg, #eecca1, transparent);
      }

      .filter-mobile {
          display: block;
          opacity: 1;
          position: absolute;
          outline: none;
          border: none;
          top: 6rem;
          right: 2rem;
          padding: 0.6rem 3rem;
          border-radius: 11px;
          background-color: var(--ink);
          color: var(--bg-2);
      }

      .hero-slide2 {
          width: 100%;
          height: 100%;
          position: absolute;
          background: linear-gradient(90deg, #eecca1, transparent);
      }

      .fav {
          height: 34px;
      }

      body {
          touch-action: pan-y;
      }

      header {
          padding-top: 1rem;
      }

      .burger {
          display: block;
      }

      .heroCard {
          width: 80%;
          left: 10%;
          height: 100%;
          margin-left: 1rem !important;
          margin-top: 1.2rem;
      }

      .heroCard img {
          object-fit: contain !important;
          width: 100%;
          height: 100%;
      }

      img {
          width: 100%;
          height: 100%;
      }

      .elem-container {
          /*max-height:233px !important;*/
      }

      .rope-hero {
          margin-right: 7rem;
          width: 170px !important;
          height: 209px !important;
          z-index: 0;
      }

      .wood-hero {
          width: 171px;
          height: 141px;
          margin-left: 3rem;
          z-index: 1 !important;
      }

      #test {
          margin-bottom: -2rem;
      }

      .user-img {
          width: 63px;
          height: 63px;
          margin-bottom: 18px;
          min-width: 63px;
      }

      .footer-column h3 {
          margin: 0;
      }

      .footer-links li {
          margin-bottom: 0.5rem;
      }

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

      .footer-links {
          list-style: none;
          margin-left: 0px !important;
          padding: 0 !important;
      }

      .hero {
          padding-top: 0;
      }

      .hero p,
      .hero .eyebrow {
          padding: 0rem 1rem;
      }

      .copyright p {
          color: white;
      }

      .hero h1 {
          padding: 0rem 1rem;
          font-size: 32px;
          font-weight: bold;
          text-shadow: 4px 3px 7px #3b1a106e;
      }

      .craft-btn {
          background-repeat: no-repeat !important;
          height: 47px !important;
          filter: none;
          width: 100% !important;
          background-position: center !important;
          font-size: 13px !important;
      }

      article {
          margin-top: 3rem !important;
          min-height: 235px !important;
      }

      .products {
          margin-top: 0 !important;
          padding: 0rem 0rem;
          grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
      }

      .actions-row {
          height: 20%;
          gap: 1px;
          font-size: 11px;
      }

      .product-title {
          font-size: 10px !important;
          margin-top: 17px;

      }

      .related {
          margin-top: 0 !important;
      }

      .product-title-p {
          font-size: 10px !important;
          margin-top: 17px;

      }

      .background-hero {
          background-position-x: center;
      }

      .section-title h2 {
          font-size: 1.2rem;
          margin-bottom: 1rem !important;
      }

      .lead {
          font-size: 0.7rem;
          color: #220f01;
          line-height: 1.2;
          width: 77%;
      }

      .cart-left {
          font-size: x-small !important;
          line-height: 12px;
      }

      .stars {
          bottom: 2.2rem;
          font-size: 12px;
      }

      .product-image {
          width: 150px !important;
          height: 150px !important;
      }

      .order {
          width: 80%;
          justify-content: center;
          font-size: x-small;
          padding: 0.5rem;
          gap: 3px;
      }

      .card-shop-bg {
          background-size: cover !important;
          margin-top: 2.1rem !important;
      }

      #about {
          padding: 1rem;
      }

      .rope-hero-2 {
          width: 279px !important;
          height: 258px !important;
      }

      #featured {
          padding: 1rem !important;

      }

      .brand .logo {
          filter: brightness(0.6);
          z-index: -1;
          width: auto;
      }

      .brand {
          display: flex;
          align-items: center;
          gap: .6rem;
          width: 100%;
          font-weight: 700;
          flex-direction: row;
          justify-content: flex-start;
          flex-wrap: nowrap;
      }

      .section-title {
          line-height: 1.2;
          font-size: 20px;

      }

      #order {
          padding: 0rem 2rem 0rem !important;
      }

      .heroCardfeatured {
          width: 54%;
          position: absolute;
          justify-items: center;
          max-height: 19rem;
          height: 100%;
          right: 0% !important;
          z-index: -1;
          opacity: 1;
          transform: rotate3d(37, 121, -54, 27deg);
          transition: transform 0.8s ease;
          /* smooth animation */
      }

      .deal {
          padding: 1rem;
          height: 100%;
          width: 65%;
      }


      .clay-item2 {
          height: 191px !important;
          width: 107px;
          transform: translateX(0);
          display: none;

      }

      .clay-item1 {
          display: none;
      }

      .btn.ghost {
          height: 42px;
          font-size: 11px;
      }

      #trending {
          padding-top: 1rem !important;
      }

      #faq {
          padding: 2.4rem 1rem;
      }

      .about-desc {
          font-size: 12px;
      }

      .clay-item3 {
          transform: scale(0.7) translate(-127px, 71px);
          z-index: -1;
      }

      .vadette {
          transform: translate(0rem, 0rem);
      }

      .pill,
      .pill2 {
          font-size: 0.8rem !important;
      }

      .pill2 {
          margin-left: 0rem !important;
      }

      .paper-item1 {

          width: 100%;
          left: 0;
          margin-top: 5rem;
      }

  }