/*-----------------------------------*\
  #main.css
\*-----------------------------------*/

/**
 * copyright 2022 codewithsadee
 */


 .logo{
  width: 100%;
  max-width: 100%;
  justify-content: center;
  text-align: center;
  vertical-align: middle;
 }
/*-----------------------------------*\
  #CUSTOM PROPERTY
\*-----------------------------------*/
.logo {
    display: inline-block;
}

.logo-img {
    width: 100%;
    max-width: 200px; /* Adjust as needed */
    height: auto;
    display: block;
}
:root {

  /**
   * colors
   */

  --charleston-green: hsl(206, 20%, 14%);
  --battleship-gray: hsl(0, 0%, 53%);
  --shamrock-green: hsl(152, 95%, 31%);
  --russian-violet: hsl(245, 97%, 13%);
  --yellow-orange: hsl(36, 100%, 50%);
  --green-pigment: hsl(152, 95%, 33%);
  --roman-silver: hsl(223, 6%, 55%);
  --sonic-silver: hsl(0, 0%, 45%);
  --eerie-black: hsl(210, 11%, 15%);
  --space-cadet: hsl(222, 36%, 22%);
  --light-gray: hsl(0, 0%, 82%);
  --mint-cream: hsl(96, 36%, 95%);
  --gunmetal-1: hsl(207, 21%, 17%);
  --gunmetal-2: hsl(206, 21%, 15%);
  --black_90: hsla(0, 0%, 0%, 0.9);
  --black_50: hsla(0, 0%, 0%, 0.5);
  --black_25: hsla(0, 0%, 0%, 0.25);
  --white_50: hsla(0, 0%, 100%, 0.50);
  --white_25: hsla(0, 0%, 100%, 0.25);
  --white_10: hsla(0, 0%, 100%, 0.1);
  --platinum: hsl(0, 0%, 92%);
  --cultured: hsl(0, 0%, 94%);
  --emerald: hsl(152, 95%, 39%);
  --emerald_70: hsla(152, 95%, 39%, 0.7);
  --white: hsl(0, 0%, 100%);
  --black: hsl(0, 0%, 0%);
  --onyx: hsl(0, 0%, 27%);
  --jet: hsl(0, 0%, 20%);
  --russian-violet_65: hsla(245, 97%, 13%, 0.65);
  --rhythm: hsl(220, 17%, 49%);
  --spanish-gray: hsl(156, 3%, 61%);

  /**
   * typography
   */

  --ff-playfair-display: 'Playfair Display', serif;
  --ff-roboto: 'Roboto', sans-serif;

  --fs-1: 3rem;
  --fs-2: 2.4rem;
  --fs-3: 2rem;
  --fs-4: 1.8rem;
  --fs-5: 1.7rem;
  --fs-6: 1.5rem;
  --fs-7: 1.4rem;
  --fs-8: 1.3rem;
  --fs-9: 1rem;

  --fw-400: 400;
  --fw-500: 500;
  --fw-600: 600;
  --fw-700: 700;

  /**
   * spacing
   */

  --section-padding: 80px;

  /**
   * radius
   */

  --radius-4: 4px;
  --radius-6: 6px;

  /**
   * shadow
   */

  --shadow-1: 0 12px 25px -8px hsla(0, 0%, 0%, 0.2);
  --shadow-2: -12px 0 25px -8px hsla(0, 0%, 0%, 0.2);
  --shadow-3: 12px 0 25px -8px hsla(0, 0%, 0%, 0.2);

  /**
   * transition
   */

  --transition-1: 0.05s ease;
  --transition-2: 0.25s ease;
  --cubic-in: cubic-bezier(0.51, 0.03, 0.64, 0.28);
  --cubic-out: cubic-bezier(0.33, 0.85, 0.4, 0.96);

}











/*-----------------------------------*\
  #RESET
\*-----------------------------------*/

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

li { list-style: none; }

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

a,
img,
span,
input,
label,
button,
ion-icon { display: block; }

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

input,
button {
  background: none;
  border: none;
  font: inherit;
}

input { width: 100%; }

button { cursor: pointer; }

ion-icon { pointer-events: none; }

address { font-style: normal; }

:focus-visible { outline-offset: 4px; }

::selection {
  background-color: var(--black_50);
  color: var(--white);
}

html {
  font-size: 10px;
  font-family: var(--ff-roboto);
  scroll-behavior: smooth;
}

body {
  font-size: 1.6rem;
  background-color: var(--white);
}





/*-----------------------------------*\
  #REUSED STYLE
\*-----------------------------------*/

.container { padding-inline: 15px; }

.btn {
  background-color: var(--bg-color, var(--emerald));
  color: var(--color, var(--white));
  display: flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  font-size: var(--fs, var(--fs-7));
  font-weight: var(--fw, var(--fw-500));
  padding: var(--padding, 15px 20px);
  border-radius: 50px;
  transition: var(--transition-2);
}

.btn ion-icon { font-size: 1.6rem; }

.btn-primary:is(:hover, :focus) { --bg-color: var(--green-pigment); }

.section { padding-block: var(--section-padding); }

.h2 {
  font-size: var(--fs-1);
  font-weight: var(--fw-500);
  color: var(--russian-violet);
}

.h3 {
  font-family: var(--ff-playfair-display);
  font-size: var(--fs-4);
}

.w-100 { width: 100%; }

.has-scrollbar {
  display: flex;
  overflow-x: auto;
  padding-block-end: 30px;
  margin-block-end: -30px;
  scroll-snap-type: inline mandatory;
}

.has-scrollbar::-webkit-scrollbar { height: 10px; }

.has-scrollbar::-webkit-scrollbar-thumb {
  background-color: transparent;
  border-radius: 15px;
}

.has-scrollbar:hover::-webkit-scrollbar-thumb { background-color: var(--black_25); }

.section-subtitle {
  color: var(--emerald);
  font-family: var(--ff-playfair-display);
  font-size: var(--fs-3);
  font-style: italic;
  margin-block-end: 10px;
}

.section-subtitle,
.section-title { text-align: center; }

.grid-list {
  display: grid;
  gap: 30px;
}

.rating-wrapper {
  color: var(--yellow-orange);
  display: flex;
  justify-content: var(--justify-content, center);
  gap: 2px;
  font-size: 1.4rem;
}

.product-card {
  background-color: var(--mint-cream);
  padding: 30px 20px;
  text-align: center;
  outline: 2px solid transparent;
  transition: var(--transition-2);
}

.product-card:is(:hover, :focus-within) { outline-color: var(--emerald); }

.product-card .card-banner {
  position: relative;
  max-width: max-content;
  margin-inline: auto;
  margin-block-end: 20px;
}

.product-card .card-banner img { transition: var(--transition-2); }

.product-card:is(:hover, :focus-within) .card-banner img { opacity: 0.6; }

.product-card .btn-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-card .product-btn {
  position: relative;
  background-color: var(--emerald);
  font-size: var(--fs, 2rem);
  color: var(--white);
  padding: var(--padding, 12px);
  border-radius: 50%;
  opacity: 0;
  transition: var(--transition-2);
}

.product-card .product-btn ion-icon { --ionicon-stroke-width: 50px; }

.tooltip {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--black_90);
  border-radius: var(--radius-4);
  font-size: var(--fs-7);
  min-width: max-content;
  padding: 4px 12px;
  pointer-events: none;
  opacity: var(--opacity, 0);
  transition: var(--transition-2);
}

.tooltip::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  border: 5px solid transparent;
  border-bottom-color: var(--black_90);
  border-right-color: var(--black_90);
}

.product-card:is(:hover, :focus-within) .product-btn { opacity: 1; }

.product-card .product-btn:is(:hover, :focus) { background-color: var(--gunmetal-2); }

.product-card .product-btn:is(:hover, :focus) .tooltip { --opacity: 1; }

.product-card .rating-wrapper { margin-block-end: 10px; }

.product-card .card-title {
  color: var(--russian-violet);
  font-size: var(--fs-4);
  font-weight: var(--fw-500);
  margin-block-end: 10px;
}

.product-card .card-title > a { transition: var(--transition-2); }

.product-card .card-title > a:is(:hover, :focus) { color: var(--emerald); }

.product-card .price-wrapper {
  font-size: var(--fs-6);
  margin-block-end: 15px;
}

.product-card .price-wrapper .del { color: var(--battleship-gray); }

.product-card .price-wrapper .price {
  color: var(--emerald);
  margin-inline-start: 5px;
}

.product-card .btn {
  margin-inline: auto;
  --padding: 12px 18px;
}





/*-----------------------------------*\
  #HEADER
\*-----------------------------------*/

/* ---- top announcement bar ---- */
.top-bar {
  background: linear-gradient(90deg, hsl(152,95%,12%), hsl(152,88%,18%), hsl(152,95%,12%));
  padding-block: 9px;
  border-bottom: 1px solid hsla(152,95%,55%,0.15);
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: var(--fs-8);
}

.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: hsla(0,0%,100%,0.75);
  font-size: var(--fs-9);
  font-weight: var(--fw-500);
  white-space: nowrap;
}

.top-bar-item ion-icon { color: hsl(46,100%,65%); font-size: 1.4rem; flex-shrink: 0; }

.top-bar-link { transition: color 0.25s; }

.top-bar-link:hover { color: hsl(46,100%,65%); }

.top-bar-sep { color: hsla(0,0%,100%,0.2); font-size: var(--fs-8); }

/* ---- main nav ---- */
.nav-wrapper {
  background-color: var(--white);
  border-bottom: 1px solid var(--platinum);
  box-shadow: 0 2px 20px hsla(0,0%,0%,0.06);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav-wrapper .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 16px;
  padding-inline: 15px;
}

/* logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, hsl(152,95%,30%), hsl(152,88%,18%));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: 0 4px 12px hsla(152,95%,20%,0.4);
  transition: transform 0.3s ease;
}

.nav-logo:hover .nav-logo-icon { transform: rotate(-8deg) scale(1.08); }

.nav-logo-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  color: var(--gunmetal-2);
  font-family: var(--ff-playfair-display);
  font-size: 1.8rem;
  font-weight: var(--fw-700);
  line-height: 1.2;
}

.nav-logo-sub {
  display: block;
  font-size: 1.1rem;
  font-weight: var(--fw-500);
  color: var(--emerald);
  font-family: var(--ff-roboto);
  font-style: normal;
  letter-spacing: 0.2px;
}

/* hamburger */
.nav-open-btn {
  background-color: var(--emerald);
  color: var(--white);
  font-size: 2.4rem;
  padding: 8px;
  border-radius: var(--radius-4);
  transition: background-color 0.2s, transform 0.2s;
  flex-shrink: 0;
}

.nav-open-btn:is(:hover,:focus) { background-color: var(--green-pigment); transform: scale(1.05); }

/* nav links */
.navbar {
  background-color: var(--gunmetal-1);
  position: fixed;
  top: 0;
  left: -300px;
  max-width: 300px;
  width: 100%;
  min-height: 100%;
  padding: 100px 20px 40px;
  box-shadow: var(--shadow-3);
  z-index: 10;
  visibility: hidden;
  transition: 0.25s var(--cubic-in);
}

.navbar.active {
  transform: translateX(300px);
  visibility: visible;
  transition: 0.5s var(--cubic-out);
}

.nav-close-btn {
  color: var(--white_50);
  font-size: 2.8rem;
  border: 1px solid;
  padding: 5px;
  position: absolute;
  top: 30px;
  right: 30px;
  border-radius: var(--radius-4);
  transition: var(--transition-1);
}

.nav-close-btn:is(:hover,:focus) { color: var(--white); }

.navbar-list { display: flex; flex-direction: column; gap: 4px; }

.navbar-link {
  display: block;
  color: hsla(0,0%,100%,0.75);
  font-size: var(--fs-6);
  font-weight: var(--fw-600);
  padding: 13px 16px;
  border-radius: var(--radius-4);
  transition: color 0.2s, background-color 0.2s;
}

.navbar-link:hover,
.navbar-link.active {
  color: var(--white);
  background-color: var(--white_10);
}

/* header action */
.header-action {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.header-action-btn {
  position: relative;
  background-color: var(--mint-cream);
  color: var(--gunmetal-2);
  font-size: 1.8rem;
  padding: 9px;
  border-radius: 50%;
  border: 1px solid var(--platinum);
  transition: background-color 0.25s, border-color 0.25s, color 0.25s;
}

.header-action-btn:hover {
  background-color: var(--emerald);
  border-color: var(--emerald);
  color: var(--white);
}

.header-enquire-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, hsl(152,95%,36%), hsl(152,88%,24%));
  color: var(--white);
  font-size: var(--fs-8);
  font-weight: var(--fw-700);
  padding: 10px 20px;
  border-radius: 50px;
  border: 1px solid hsla(152,95%,55%,0.3);
  box-shadow: 0 4px 14px hsla(152,88%,20%,0.35);
  transition: transform 0.25s, box-shadow 0.25s;
  white-space: nowrap;
}

.header-enquire-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px hsla(152,88%,20%,0.45);
}

/* search */
.search-wrapper { position: relative; }

.search-wrapper.active .search-icon,
.search-wrapper .close-icon { display: none; }

.search-wrapper .search-icon,
.search-wrapper.active .close-icon { display: block; }

.input-wrapper {
  position: absolute;
  background-color: var(--white);
  top: calc(100% + 12px);
  right: 0;
  width: 280px;
  transform: scale(var(--scale, 0.92));
  transform-origin: top right;
  box-shadow: 0 8px 32px hsla(0,0%,0%,0.12);
  padding: 16px;
  border-radius: 12px;
  border: 1px solid var(--platinum);
  visibility: hidden;
  opacity: 0;
  transition: 0.15s var(--cubic-in);
}

.search-wrapper.active .input-wrapper {
  visibility: visible;
  opacity: 1;
  --scale: 1;
  transition: 0.3s var(--cubic-out);
}

.search-input {
  color: var(--eerie-black);
  font-size: var(--fs-6);
  border: 1.5px solid var(--platinum);
  border-radius: 8px;
  padding: 12px 40px 12px 14px;
  outline: none;
  transition: border-color 0.25s;
}

.search-input:focus { border-color: var(--emerald); }

.search-input::-webkit-search-cancel-button { display: none; }

.search-submit {
  color: var(--emerald);
  font-size: 1.8rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 28px;
}

/* ---- desktop nav ---- */
@media (min-width: 992px) {
  .nav-open-btn,
  .nav-close-btn { display: none; }

  .nav-wrapper .container { padding-inline: 40px; }

  .navbar {
    all: unset;
    display: flex;
    align-items: center;
  }

  .navbar-list { flex-direction: row; gap: 4px; }

  .navbar-link {
    color: var(--gunmetal-2);
    font-size: var(--fs-6);
    padding: 8px 14px;
    border-radius: 8px;
    position: relative;
  }

  .navbar-link::after {
    content: "";
    position: absolute;
    bottom: 4px;
    left: 14px;
    right: 14px;
    height: 2px;
    background-color: var(--emerald);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform 0.25s ease;
  }

  .navbar-link:hover,
  .navbar-link.active {
    color: var(--emerald);
    background-color: hsl(152,95%,96%);
  }

  .navbar-link:hover::after,
  .navbar-link.active::after { transform: scaleX(1); }
}

/* ---- top bar: 2-col layout on wider screens ---- */
@media (min-width: 768px) {
  .top-bar-inner { justify-content: space-between; }
  .top-bar-item  { font-size: var(--fs-8); }
}

/* ---- tiny screens ---- */
@media (max-width: 480px) {
  .nav-logo-text { font-size: 1.5rem; }
  .nav-logo-sub  { font-size: 1rem; }
  .top-bar-right { display: none; }
  .header-enquire-btn span { display: none; }
  .header-enquire-btn { padding: 9px 12px; }
}





/*-----------------------------------*\
  #ASIDE
\*-----------------------------------*/

.side-panel {
  position: fixed;
  top: 0;
  right: -300px;
  background-color: var(--white);
  max-width: 300px;
  width: 100%;
  height: 100%;
  padding: 100px 20px 25px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-2);
  z-index: 6;
  visibility: hidden;
  transition: 0.25s var(--cubic-in);
}

.side-panel.active {
  visibility: visible;
  transform: translateX(-300px);
  transition: 0.5s var(--cubic-out);
}

.panel-close-btn {
  position: absolute;
  top: 20px;
  right: 15px;
  background-color: var(--jet);
  color: var(--white);
  font-size: 2.6rem;
  padding: 7px;
  border-radius: var(--radius-4);
}

.panel-list { margin-block-end: auto; }

.panel-item:not(:last-child) {
  padding-block-end: 20px;
  border-block-end: 1px solid var(--cultured);
  margin-block-end: 20px;
}

.panel-card {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.panel-item .item-title {
  color: var(--russian-violet);
  font-size: var(--fs-7);
  font-weight: var(--fw-700);
  margin-block-end: 6px;
}

.panel-item .item-value {
  color: var(--battleship-gray);
  font-size: var(--fs-8);
}

.panel-item .item-close-btn {
  margin-inline-start: auto;
  color: var(--onyx);
  font-size: 2.5rem;
}

.panel-item .item-close-btn ion-icon { --ionicon-stroke-width: 25px; }

.side-panel .subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-block-end: 30px;
}

.side-panel .subtotal-text {
  color: var(--russian-violet);
  font-weight: var(--fw-700);
}

.side-panel .subtotal-value {
  color: var(--emerald);
  font-size: var(--fs-3);
  font-weight: var(--fw-700);
}

.panel-btn {
  background-color: var(--emerald);
  color: var(--white);
  font-size: var(--fs-7);
  text-align: center;
  padding: 20px 15px;
  border-radius: var(--radius-6);
  transition: var(--transition-1);
}

.panel-btn:is(:hover, :focus) { background-color: var(--green-pigment); }





/*-----------------------------------*\
  #FOOTER
\*-----------------------------------*/

.footer {
  background-image: url("../images/hero-left-bg.png"), url("../images/hero-right-bg.png");
  background-color: var(--charleston-green);
  background-repeat: no-repeat, no-repeat;
  background-position: bottom left, top right;
  color: var(--light-gray);
}

.footer-top { padding-block: 60px; }

.footer-top .container {
  display: grid;
  gap: 60px;
}

.footer .logo {
  font-size: 3.2rem;
  color: var(--white);
  font-weight: var(--fw-700);
}

.footer-text {
  line-height: 2;
  margin-block: 20px 15px;
}

.social-list {
  display: flex;
  gap: 15px;
}

.social-link {
  border: 1px solid;
  padding: 8px;
  border-radius: 50%;
  transition: var(--transition-1);
}

.social-link:is(:hover, :focus) { color: var(--emerald); }

.footer-list-title {
  color: var(--white);
  font-size: var(--fs-2);
  font-weight: var(--fw-700);
  margin-block-end: 25px;
}

.footer-link {
  font-size: var(--fs-6);
  margin-block-start: 16px;
  transition: var(--transition-1);
}

.footer-link:is(:hover, :focus) { color: var(--emerald); }

.footer-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-item:not(:last-child) { margin-block-end: 16px; }

.footer-item .contact-icon { font-size: 2.4rem; }

.footer-top .newsletter-text {
  line-height: 1.8;
  margin-block-end: 25px;
}

.footer-form { position: relative; }

.footer-input {
  background-color: var(--white);
  color: var(--battleship-gray);
  font-size: var(--fs-6);
  padding: 16px 20px;
  padding-inline-end: 50px;
  border-radius: var(--radius-4);
}

.footer-form-btn {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  color: var(--emerald);
  font-size: 2.2rem;
}

.footer-bottom {
  background-color: var(--gunmetal-1);
  padding-block: 20px;
  font-size: var(--fs-7);
}

.copyright {
  text-align: center;
  line-height: 1.7;
  margin-block-end: 10px;
}

.copyright-link {
  display: inline-block;
  color: var(--emerald);
}

.footer-bottom-list {
  display: flex;
  justify-content: center;
  gap: 20px;
}





/*-----------------------------------*\
  #BACK TO TOP
\*-----------------------------------*/

.back-to-top {
  position: fixed;
  bottom: 10px;
  right: 20px;
  background-color: var(--emerald_70);
  font-size: 2rem;
  color: var(--white);
  padding: 8px;
  border-radius: 50%;
  border: 2px solid var(--emerald);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-2);
  z-index: 1;
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(-10px);
}

.back-to-top:is(:hover, :focus) { background-color: var(--emerald); }





/*-----------------------------------*\
  #BREADCUMB
\*-----------------------------------*/

.breadcumb-wrapper {
  background-image: url(../images/bradcums.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: var(--russian-violet_65);
  background-blend-mode: darken;
  text-align: center;
  color: var(--white);
  min-height: 250px;
  display: grid;
  place-content: center;
  gap: 20px;
}

.page-title {
  --fs-1: 3.5rem;
  font-size: var(--fs-1);
}

.breadcumb-list {
  display: flex;
  justify-content: center;
}

.breadcumb-item {
  font-size: var(--fs-3);
  display: flex;
}

.breadcumb-item:not(:last-child)::after {
  content: "/";
  margin-inline: 10px;
}

.breadcumb-link { transition: var(--transition-2); }

.breadcumb-link:is(:hover, :focus) { color: var(--emerald); }





/*-----------------------------------*\
  #MEDIA QUERIES
\*-----------------------------------*/

/**
 * responsive for larger than 480px screen
 */

@media (min-width: 480px) {

  /**
   * HEADER
   */

  .nav-wrapper .container { padding-inline: 25px; }

  .nav-wrapper .h1 {
    min-width: max-content;
    order: 2;
  }

  .nav-open-btn { order: 1; }

  .header-action {
    order: 3;
    min-width: max-content;
    gap: 15px;
  }

  .input-wrapper { --translateX: -220px; }

}





/**
 * responsive for larger than 569px screen
 */

@media (min-width: 569px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-1: 3.2rem;

  }



  /**
   * REUSED STYLE
   */

  .container {
    max-width: 520px;
    margin-inline: auto;
  }



  /**
   * HEADER
   */

  .nav-wrapper .container { max-width: unset; }

}





/**
 * responsive for larger than 768px screen
 */

@media (min-width: 768px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-1: 3.8rem;

  }



  /**
   * REUSED STYLE
   */

  .container { max-width: 700px; }



  /**
   * FOOTER
   */

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



  /**
   * BREADCUMB
   */

  .breadcumb-wrapper { min-height: 400px; }

  .page-title { --fs-1: 5rem; }

}





/**
 * responsive for larger than 992px screen
 */

@media (min-width: 992px) {

  /**
   * REUSED STYLE
   */

  .container {
    padding-inline: 40px;
    max-width: 1020px;
  }













  /**
   * HEADER — handled above in component styles
   */

  /**
   * FOOTER
   */

  .footer-top .container {
    grid-template-columns: 1.3fr 0.6fr 1fr 1fr;
    gap: 30px;
  }

  .footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .copyright { margin-block-end: 0; }

}





/**
 * responsive for larger than 1200px screen
 */

@media (min-width: 1200px) {

  /**
   * REUSED STYLE
   */

  .container { max-width: 1200px; }



  /**
   * HEADER
   */

  .nav-wrapper .container { max-width: 1200px; }

}


/*-----------------------------------*\
  #RESPONSIVE FIXES — All Pages
\*-----------------------------------*/

/* ---- Base global fixes (all screen sizes) ---- */

/* Prevent horizontal overflow globally */
html, body { overflow-x: hidden; }
body { position: relative; }

/* Universal box-sizing (reinforcement) */
*, *::before, *::after { box-sizing: border-box; }

/* Ensure all images are responsive */
img { max-width: 100%; height: auto; display: block; }

/* Section padding: reduce on mobile */
.section { --section-padding: 50px; }

/* Logo text: shrink on very small screens */
.logo {
  font-size: clamp(1.2rem, 4vw, 3rem) !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 180px;
}

/* Global tap target minimum — buttons & interactive elements */
button, .btn, a.btn,
.nav-open-btn, .header-action-btn,
.shop-filter-btn, .ot-btn,
.shop-card-cta, .footer-cta-btn-primary,
.footer-cta-btn-wa, .contact-submit-btn,
.card-action-btn, .whatsapp-btn {
  min-height: 44px;
}

/* Prevent blobs from causing overflow */
.hero-blob { overflow: hidden; }

/* Top bar: allow wrap on tiny screens */
.top-bar p {
  font-size: var(--fs-9);
  white-space: normal;
  line-height: 1.5;
}

/* Nav wrapper: let header.css handle its own padding */
/* .nav-wrapper .container padding is managed in header.css */

/* Header action: tighter gap on mobile */
.header-action { gap: 8px; min-width: auto; }

/* Footer logo: prevent overflow */
.footer .logo {
  font-size: clamp(1.4rem, 4.5vw, 2.8rem) !important;
  white-space: normal;
  word-break: break-word;
  max-width: 100%;
}

/* Footer grid: single column on mobile */
.footer-top .container { grid-template-columns: 1fr; gap: 32px; }

/* Footer bottom: stack on mobile */
.footer-bottom .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

/* Breadcrumb: scale down on mobile */
.page-title { --fs-1: 2.4rem; font-size: var(--fs-1); }

.breadcumb-wrapper { min-height: 180px; padding-inline: 16px; gap: 12px; }

.breadcumb-item { font-size: var(--fs-6); }

/* Description table: scrollable on mobile */
.description-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* Container: full width with safe padding on smallest screens */
@media (max-width: 360px) {
  .container { padding-inline: 12px; }
  .logo { max-width: 140px; }
  .nav-logo-text { font-size: 1.3rem; }
  .nav-logo-sub  { display: none; }
  .breadcumb-wrapper { min-height: 150px; }
  .page-title { font-size: 2rem; }
}

/* ---- 480px+ ---- */
@media (min-width: 480px) {
  .logo { max-width: 240px; }
  .footer-bottom .container { flex-direction: row; justify-content: space-between; }
}

/* ---- 768px+: footer 2-col ---- */
@media (min-width: 768px) {
  .footer-top .container { grid-template-columns: 1fr 1fr; }
  .section { --section-padding: 80px; }
  .page-title { --fs-1: 4rem; }
  .breadcumb-wrapper { min-height: 280px; }
}

/* ---- 992px+: footer 4-col ---- */
@media (min-width: 992px) {
  .footer-top .container { grid-template-columns: 1.3fr 0.6fr 1fr 1fr; gap: 30px; }
  .logo { max-width: none; font-size: 3rem !important; }
  .footer .logo { font-size: 3.2rem !important; }
}

/* ---- Side panels (wishlist/cart) — prevent overflow on mobile ---- */
@media (max-width: 400px) {
  .side-panel { max-width: 100%; padding: 80px 14px 20px; }
  .panel-btn  { padding: 16px 12px; font-size: var(--fs-8); }
}

/* ---- Aside/Side panel backdrop on mobile ---- */
.side-panel.active + .side-panel { z-index: 5; }

/* ---- Marquee bar: smaller text on tiny screens ---- */
@media (max-width: 420px) {
  .marquee-item { font-size: 1rem; padding-inline: 14px; }
  .marquee-bar  { padding-block: 8px; }
}

/* ---- h2 headlines: clamp on small screens ---- */
@media (max-width: 480px) {
  .h2 { font-size: clamp(2rem, 7vw, 3rem); }
}

/* ---- Product card base reuse: clamp card title ---- */
.product-card .card-title { font-size: clamp(1.4rem, 3vw, 1.8rem); }

/* ---- Btn: never overflow container ---- */
.btn { max-width: 100%; }

/* ---- Search input: fix on small screens — prevent overflow ---- */
@media (max-width: 400px) {
  .input-wrapper { width: calc(100vw - 30px); right: -10px; max-width: calc(100vw - 30px); }
}

/* ---- Trust strip: wrap without overflow on small phones ---- */
@media (max-width: 480px) {
  .trust-strip-grid { gap: 10px; }
  .trust-divider { display: none; }
  .trust-item { font-size: var(--fs-8); }
}

/* ---- About small image: prevent overflow on mobile ---- */
@media (max-width: 575px) {
  .about-img-small { display: none; }
  .about-images { overflow: visible; }
}

/* ---- Service grid: 2-col on tablet ---- */
@media (min-width: 576px) and (max-width: 991px) {
  .service-list { grid-template-columns: 1fr 1fr; }
}

/* ---- Why-banner features: 2-col on small screens ---- */
@media (max-width: 575px) {
  .why-features-grid { grid-template-columns: repeat(2, 1fr); gap: 18px 12px; }
  .why-banner-inner  { padding: 32px 20px; }
  .why-banner-title  { font-size: 2.2rem; margin-block-end: 24px; }
  .why-feature-icon  { width: 56px; height: 56px; font-size: 2.2rem; }
  .why-feature-text  { font-size: var(--fs-8); }
}

/* ---- Home CTA section: reduce padding, stack buttons ---- */
@media (max-width: 575px) {
  .home-cta-inner  { padding: 40px 22px; gap: 28px; }
  .home-cta-title  { font-size: clamp(2rem, 6vw, 2.8rem); }
  .home-cta-sub    { font-size: var(--fs-6); }
  .home-cta-btns   { flex-direction: column; align-items: stretch; }
  .home-cta-btn, .home-whatsapp-btn { width: 100%; justify-content: center; }
}
@media (max-width: 359px) {
  .home-cta-inner  { padding: 32px 16px; }
  .home-cta-title  { font-size: 2rem; }
}

/* ---- Product details: description table scroll ---- */
.description-table {
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  max-width: 100%;
}

/* ---- Breadcrumb: prevent text overflow ---- */
.breadcumb-list { flex-wrap: wrap; gap: 4px; }
.breadcumb-item { font-size: clamp(1.3rem, 3vw, 2rem); }


/*-----------------------------------*\
  #MARQUEE ANNOUNCEMENT BAR
\*-----------------------------------*/

.marquee-bar {
  background: linear-gradient(90deg,
    hsl(36,100%,45%) 0%,
    hsl(40,100%,48%) 30%,
    hsl(36,100%,45%) 60%,
    hsl(33,100%,42%) 100%);
  padding-block: 10px;
  overflow: hidden;
  position: relative;
  z-index: 20;
  border-bottom: 1px solid hsla(0,0%,0%,0.08);
}

/* shimmer sweep */
.marquee-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 30%,
    hsla(0,0%,100%,0.18) 50%,
    transparent 70%
  );
  animation: marqueeSweep 4s linear infinite;
  pointer-events: none;
}

@keyframes marqueeSweep {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(200%); }
}

.marquee-track {
  width: 100%;
  overflow: hidden;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: marqueeScroll 38s linear infinite;
  will-change: transform;
}

.marquee-content:hover { animation-play-state: paused; }

@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: hsl(30,40%,10%);
  font-size: var(--fs-8);
  font-weight: var(--fw-700);
  padding-inline: 20px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.marquee-item ion-icon {
  font-size: 1.6rem;
  color: hsl(152,88%,22%);
  flex-shrink: 0;
}

.marquee-sep {
  color: hsl(152,88%,28%);
  font-size: 1rem;
  flex-shrink: 0;
  opacity: 0.7;
}


/*-----------------------------------*\
  #BOOTSTRAP CONFLICT FIXES
  Bootstrap is loaded before custom CSS.
  These rules restore site-specific styles
  that Bootstrap's reset/reboot overrides.
\*-----------------------------------*/

/* Bootstrap sets box-sizing globally — keep it */
*, *::before, *::after { box-sizing: border-box; }

/* Bootstrap sets font-size: 1rem on html — restore our 10px base */
html { font-size: 10px !important; }

/* Bootstrap resets all h tags — keep our custom color/font */
h1, h2, h3, h4, h5, h6 { margin-bottom: 0; line-height: inherit; }

/* Bootstrap resets <a> to inherit color — links inside nav still need color */
a { color: inherit; text-decoration: none; }

/* Bootstrap resets <ul>/<li> padding/margin */
ul, ol { margin: 0; padding: 0; list-style: none; }

/* Bootstrap resets <strong> font-weight only — fine */

/* Bootstrap adds border to <img> — remove */
img { border: none; max-width: 100%; height: auto; }

/* Bootstrap sets button font-size:1rem — restore cursor */
button { cursor: pointer; }

/* Bootstrap sets .container max-widths — let custom container override where needed */
.hero .container { max-width: 1200px !important; width: 100%; padding-inline: 20px; }

/* Bootstrap row negative margin fix — prevent horizontal overflow */
.hero .row { --bs-gutter-x: 3rem; margin-left: 0 !important; margin-right: 0 !important; overflow: hidden; }
.hero .row > * { padding-right: calc(var(--bs-gutter-x) * .5); padding-left: calc(var(--bs-gutter-x) * .5); }
