@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
@import url('./pages.css?v=20260713-typofix1');

/*-----------------------------------*\
 * #CUSTOM PROPERTY
\*-----------------------------------*/

:root {

  /**
   * colors
   */

  --middle-blue-green: hsl(176, 35%, 63%);
  --sonic-silver: hsl(0, 0%, 44%);
  --eerie-black: hsl(0, 0%, 9%);
  --ocean-green: hsl(148, 45%, 58%);
  --candy-pink: hsl(356.09deg 100% 42.16%);
  --cultured: hsl(0, 0%, 96%);
  --white: hsl(0, 0%, 100%);
  --black: hsl(0, 0%, 0%);

  /**
   * typography
   */

  --ff-roboto:'Roboto', sans-serif;

  --fs-1: 2.5rem;
  --fs-2: 1.75rem;
  --fs-3: 1.625rem;--fs-4: 1.5rem;
  --fs-5: 1.375rem;--fs-6: 1.25rem;--fs-7: 1.125rem;
  --fs-8: 0.938rem;
  --fs-9: 0.875rem;
  --fs-10: 0.813rem;

  --fw-500: 500;
  --fw-600: 600;

  /**
   * transition
   */

  --transition-1: 0.25s ease;
  --transition-2: 0.75s ease;
  --cubic-out: cubic-bezier(0.51, 0.03, 0.64, 0.28);
  --cubic-in: cubic-bezier(0.33, 0.85, 0.56, 1.02);

  /**
   * spacing
   */

  --section-padding: 60px;}





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

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

li { list-style: none; }

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

a:visited { color: inherit; }

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

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

button {
  text-align: left;
  cursor: pointer;
}

input {
  width: 100%;
  outline-color: var(--middle-blue-green);
}

img {height: auto;}

ion-icon {
  color: currentColor;
  pointer-events: none;
}

html {
  font-family: var(--ff-roboto);
  color: var(--sonic-silver);
  scroll-behavior: smooth;
}

body {
  background: var(--white);
  padding-block: 70px;
}





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

.container { padding-inline: 15px; }

a,
button { transition: var(--transition-1); }

h3 > a { color: inherit; }

.h1,
.h2,
.h3,
.h4 {
  color: var(--eerie-black);
  font-weight: var(--fw-600);
}

.h1 {
  font-size: var(--fs-1);
  line-height: 1;
}

.h2 { font-size: var(--fs-2); }

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

.h4 {
  font-size: var(--fs-7);
  font-weight: var(--fw-500);
}

.btn {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  font: inherit;
  background: var(--background, var(--eerie-black));
  color: var(--color, var(--white)) !important;
  -webkit-text-fill-color: var(--color, var(--white));
  font-weight: var(--fw-600);
  height: var(--height, 60px);
  padding-inline: 50px;
  border: 1px solid var(--border-color, var(--eerie-black));
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-shadow: inset 0 0 0 0 var(--eerie-black);
  transition: color var(--transition-1), background var(--transition-1),
    border-color var(--transition-1), opacity var(--transition-1),
    transform var(--transition-1), box-shadow var(--transition-1);
}

.btn-primary:is(:hover, :focus) {
  --background: hsl(0, 0%, 18%);
  --color: var(--white);
  --border-color: var(--eerie-black);
  transform: translateY(-1px);
  opacity: .92;
}

.btn-secondary {
  --height: 50px;
  --background: var(--white);
  --color: var(--eerie-black);
  --border-color: var(--white);
}

.btn-secondary:is(:hover, :focus) {
  --background: var(--eerie-black);
  --color: var(--white);
  --border-color: var(--eerie-black);
}

.btn-outline {
  --height: 50px;
  --background: var(--white);
  --color: var(--eerie-black);
  --border-color: var(--eerie-black);
  padding-inline: 40px;
}

.btn-outline:is(:hover, :focus) {
  --background: var(--eerie-black);
  --color: var(--white);
  --border-color: var(--eerie-black);
  box-shadow: inset 220px 0 0 0 var(--eerie-black);
}

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

.w-100 {width: 100%;}

.section-title {
  text-align: center;
  margin-bottom: 30px;
}





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

.header-search { display: none; }

.header__bar {
  padding: 2rem;
  font-size: 0.8rem;
  text-align: center;
  background-color: var(--black);
  color: var(--white);
}


.header {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--white);
  width: 100%;
  padding-block: 20px;
  z-index: 4;
  transition: var(--transition-1);
}

.header.active {
  position: fixed;
  box-shadow: 0 2px 20px hsla(0, 0%, 0%, 0.1);
}

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

.nav-open-btn {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
}

.nav-open-btn span {
  width: 20px;
  height: 2px;
  background: var(--black);
  transition: var(--transition-1);
}

.nav-open-btn span:nth-child(2) {
  transform: scaleX(0.5);
  transform-origin: right;
}

.nav-open-btn:is(:hover, :focus) span:nth-child(2) { transform: scaleX(1); }

.header-actions {
  background: var(--white);
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 5px;
  padding-block: 16px 10px;
  box-shadow: 0 -2px 20px hsla(0, 0%, 0%, 0.1);
  z-index: 1;
}

.header-action-btn {
  position: relative;
  width: 50px;
  color: var(--eerie-black);
  text-align: center;
}

.header-action-btn ion-icon {
  margin-inline: auto;
  font-size: 22px;
  margin-bottom: 3px;
}

.header-action-label {
  color: var(--sonic-silver);
  font-size: var(--fs-10);
  transition: var(--transition-1);
}

.header-action-btn:is(:hover, :focus) .header-action-label { color: var(--eerie-black); }

.header-action-btn .btn-badge {
  position: absolute;
  top: -5px;
  right: 0;
  background: var(--background, var(--eerie-black));
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  line-height: 0;
  font-size: 13px;
  color: var(--white);
  border-radius: 50%;
}

.header-action-btn .btn-badge.green { --background: var(--candy-pink); }

@media (max-width: 991px) {
  .header,
  .header.active {
    position: relative;
    padding-block: 14px;
    box-shadow: none;
  }

  .header .container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44px;
    column-gap: 12px;
  }

  .header .logo img {
    width: min(260px, 100%);
  }

  .header .logo {
    grid-column: 1;
    grid-row: 1;
  }

  .header-search {
    position: relative;
    grid-column: 1 / -1;
    grid-row: 2;
    display: block;
    width: 100%;
    margin-top: 14px;
  }

  .nav-open-btn {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .header-search .input-field {
    width: 100%;
    min-height: 46px;
    padding: 11px 48px 11px 14px;
    border: 1px solid #cfd1d2;
    border-radius: 4px;
    background: var(--white);
    color: var(--eerie-black);
    font: inherit;
  }

  .header-search .search-btn {
    position: absolute;
    top: 50%;
    right: 5px;
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    transform: translateY(-50%);
    color: var(--eerie-black);
  }

  .header-search .search-btn ion-icon {
    width: 22px;
    height: 22px;
    font-size: 22px;
  }
}

.navbar {
  background: var(--white);
  position: fixed;
  top: 0;
  right: -300px;
  max-width: 300px;
  width: 100%;
  height: 100%;
  padding: 30px 25px;
  z-index: 3;
  visibility: hidden;
  transition: 0.25s var(--cubic-out);
}

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

.navbar-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}

.nav-close-btn ion-icon { font-size: 23px; }

.navbar-link {
  padding-block: 10px;
  color: var(--eerie-black);
  text-transform: uppercase;
}

.navbar-list > li:not(:last-child) { border-bottom: 1px solid var(--cultured); }

.navbar-dropdown-toggle {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-block: 10px;
  border: none;
  background: none;
  color: var(--eerie-black);
  text-transform: uppercase;
  font: inherit;
  cursor: pointer;
  text-align: left;
}

.navbar-dropdown-toggle .dropdown-arrow {
  font-size: 16px;
  transition: transform var(--transition-1);
}

.navbar-dropdown-toggle[aria-expanded="true"] .dropdown-arrow { transform: rotate(180deg); }

.navbar-dropdown {
  display: none;
  list-style: none;
  padding-left: 14px;
}

.navbar-item-dropdown.is-open > .navbar-dropdown { display: block; }

.navbar-sublink {
  display: block;
  padding: 9px 0;
  color: var(--eerie-black);
  font-size: 0.86rem;
}

.navbar-sublink:is(:hover, :focus) { color: var(--candy-pink); }

.overlay {
  position: fixed;
  inset: 0;
  background: var(--black);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-1);
  z-index: 2;
}

.overlay.active {
  opacity: 0.7;
  pointer-events: all;
}





/*-----------------------------------*\
 * #HERO
\*-----------------------------------*/



.hero {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left;
  width: 100%;
  min-height: 80vh;
  padding-block: var(--section-padding);
  display: flex;
  align-items: center;
}

.hero .container { width: 100%; }

.hero-subtitle {
  color: var(--eerie-black);
  font-size: var(--fs-4);
  font-weight: var(--fw-600);
  margin-bottom: 20px;
}

.hero-title {
  margin-bottom: 35px;
  max-width: 12ch;
}





/*-----------------------------------*\
 * #SERVICE
\*-----------------------------------*/

.service { padding-block: 45px; }

.service-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 50px;
}

.service-item {
  max-width: 235px;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
}

.service-item-icon { width: 45px; }

.service-item-icon img { margin-inline: auto; }

.service-item-title {
  color: var(--eerie-black);
  font-size: var(--fs-7);
  font-weight: var(--fw-600);
}





/*-----------------------------------*\
 * #CATETORY
\*-----------------------------------*/

.category { padding-top: 0; }

.category-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.category-item {
  width: 100%;
  position: relative;
}

.category-banner {
  background: var(--cultured);
  aspect-ratio: 2 / 2.35;
  overflow: hidden;
}

.category-banner img {
  height: 100%;
  object-fit: cover;
  transition: var(--transition-2);
}

.category-item:hover .category-banner img { transform: scale(1.05); }

.category-item .btn {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  padding-inline: 30px;
}





/*-----------------------------------*\
 * #PRODUCT
\*-----------------------------------*/




.filter-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 20px;
  margin-top: 28px;
  margin-bottom: 50px;
}

.catalog-intro {
  max-width: 660px;
  margin: -16px auto 28px;
  text-align: center;
}

.filter-btn {
  display: inline-flex;
  min-height: 38px;
  padding: 8px 14px;
  align-items: center;
  border: 1px solid #d8d8d8;
  border-radius: 4px;
  color: var(--eerie-black);
  background: var(--white);
  font-size: var(--fs-7);
  font-weight: var(--fw-500);
}

.filter-btn.active,
.filter-btn:is(:hover, :focus) {
  border-color: var(--eerie-black);
  color: var(--white);
  background: var(--eerie-black);
}

.catalog-empty {
  text-align: center;
  color: var(--eerie-black);
  padding: 40px 20px;
  font-size: var(--fs-6);
}

.catalog-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 16px;
  margin: -30px auto 34px;
}

.catalog-toolbar-field {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-7);
  color: var(--eerie-black);
}

.catalog-toolbar-field select {
  min-height: 38px;
  padding: 6px 10px;
  border: 1px solid #d8d8d8;
  border-radius: 4px;
  color: var(--eerie-black);
  background: var(--white);
  font: inherit;
  font-size: var(--fs-7);
}

.product-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px 25px;
  margin-bottom: 60px;
}
.container .text-muted{
  text-align: center;
  width: 70%;
  margin: 0.9rem auto;
}
.product-card .card-banner {
  position: relative;
  margin-bottom: 20px;
}

.product-card .card-badge {
  background: var(--eerie-black);
  color: var(--white);
  position: absolute;
  top: 0;
  left: 0;
  font-size: var(--fs-9);
  font-weight: var(--fw-500);
  padding: 8px 32px;
}

.product-card .card-badge.red {background: var(--candy-pink);}

.product-card .card-badge.green {background: var(--ocean-green);}

.product-card .card-actions {
  display: flex;
  height: 45px;
}

.product-card .card-action-btn {
  border: 1px solid var(--cultured);
  width: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--eerie-black);
}

.product-card .card-action-btn:is(:hover, :focus),
.product-card .card-action-btn.is-added {
  border-color: var(--eerie-black);
  background: var(--eerie-black);
  color: var(--white);
}

.product-card .cart-btn {
  flex-grow: 1;
  background: var(--eerie-black);
  color: var(--white);
  border-color: var(--eerie-black);
}

.product-card .cart-btn:is(:hover, :focus) {
  background: hsl(0, 0%, 18%);
  color: var(--white);
  opacity: .94;
}

.product-card .card-action-btn ion-icon { font-size: 20px; }

.product-card .card-title { margin-bottom: 5px; }

.card-seller {
  display: block;
  margin-bottom: 6px;
  color: var(--sonic-silver);
  font-size: var(--fs-9);
}

.card-seller:is(:hover, :focus) { color: var(--candy-pink); }

.product-card .card-price {
  color: var(--eerie-black);
  font-size: var(--fs-8);
  font-weight: var(--fw-500);
}

.product-card .card-price data:not(:first-child) {
  color: var(--sonic-silver);
  margin-left: 5px;
  text-decoration: line-through;
}

.product .btn { margin-inline: auto; }

.wishlist-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.wishlist-actions .btn {
  min-width: 150px;
  height: 46px;
  padding-inline: 22px;
}

/*-----------------------------------*\
 * #SP product
\*-----------------------------------*/
img{
  width: 100%;
  display: block;
}
.main-wrapper{
  min-height: 100vh;
  background-color: #f1f1f1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.container{
  max-width: 1200px;
  padding: 0 1rem;
  margin: 0 auto;
}
.product-div{
  margin: 1rem 0;
  padding: 2rem 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background-color: #fff;
  border-radius: 3px;
  column-gap: 10px;
}
.product-div-left{
  padding: 20px;
}
.product-div-right{
  padding: 20px;
}
.img-container {
  position: relative;
}
.img-container img{
  /* width: 378px; */
  margin: 0 auto;
}
.img-container img.skeleton-image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.skeleton-image,
.skeleton-thumb,
.skeleton-text {
  background: linear-gradient(100deg, #e8e8e8 30%, #f4f4f4 50%, #e8e8e8 70%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.4s ease-in-out infinite;
}
.hover-container div img.skeleton-thumb {
  width: 50px;
  height: 50px;
  object-fit: cover;
}
.product-name.skeleton-text,
.product-price.skeleton-text {
  color: transparent;
  border-radius: 4px;
  display: inline-block;
}
@keyframes skeleton-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
@media (prefers-reduced-motion: reduce) {
  .skeleton-image, .skeleton-thumb, .skeleton-text {
    animation: none;
    background: #ececec;
  }
}
.img-container img[hidden]{
  display: none;
}
.img-container iframe {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  border: 0;
  background: var(--eerie-black);
}
.img-container iframe[hidden] {
  display: none;
}
.product-visual-card {
  display: grid;
  width: 100%;
  min-height: 100%;
  aspect-ratio: 4 / 5;
  padding: clamp(20px, 4vw, 38px);
  align-content: start;
  gap: 9px;
  color: var(--eerie-black);
  background: var(--cultured);
}
.product-visual-card[hidden] { display: none; }
.product-visual-eyebrow {
  color: var(--candy-pink);
  font-size: var(--fs-10);
  font-weight: var(--fw-600);
  letter-spacing: .09em;
  text-transform: uppercase;
}
.product-visual-card h2 {
  font-size: clamp(1.55rem, 3vw, 2.3rem);
  line-height: 1.05;
}
.product-visual-body {
  display: grid;
  min-height: 0;
  margin-top: 9px;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(14px, 3vw, 30px);
  align-items: center;
}
.product-visual-body > img {
  width: 100%;
  max-height: 290px;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.product-visual-facts { display: grid; gap: 10px; }
.product-visual-facts li {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  color: var(--eerie-black);
  font-size: var(--fs-8);
  line-height: 1.35;
}
.product-visual-facts li::before {
  width: 8px;
  height: 8px;
  margin-top: .42em;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--candy-pink);
  content: '';
}
.product-visual-dimensions { display: grid; gap: 10px; }
.product-visual-dimensions div {
  display: flex;
  padding: 10px 0;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px solid hsl(0 0% 0% / .14);
}
.product-visual-dimensions dt { color: var(--sonic-silver); font-size: var(--fs-9); }
.product-visual-dimensions dd { color: var(--eerie-black); font-weight: var(--fw-600); }
.hover-container{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
}
.hover-container div[hidden],
.hover-container .media-thumbnail[hidden]{
  display: none;
}
.hover-container div,
.hover-container .media-thumbnail{
  border: 2px solid rgb(0 0 0);
  padding: 1rem;
  border-radius: 3px;
  margin: 0 4px 8px 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hover-container .media-thumbnail {
  min-width: 82px;
  min-height: 82px;
  color: var(--eerie-black);
  text-align: center;
}
.hover-container .media-thumbnail--photo { padding: 1rem; }
.hover-container .media-thumbnail--card,
.hover-container .media-thumbnail--video { gap: 4px; flex-direction: column; }
.media-thumbnail-marker { color: var(--candy-pink); font-size: 1.35rem; font-weight: var(--fw-600); line-height: 1; }
.media-thumbnail-label { max-width: 72px; overflow: hidden; font-size: .68rem; font-weight: var(--fw-600); line-height: 1.1; text-overflow: ellipsis; white-space: nowrap; }
.active{
  border-color: rgb(176, 176, 176)!important;
}
.hover-container div:hover,
.hover-container .media-thumbnail:hover{
  border-color: rgb(176, 176, 176);
}
.hover-container div img{
  width: 50px;
  cursor: pointer;
}
.hover-container div[data-gallery-video-thumb] {
  color: var(--eerie-black);
}
.hover-container div[data-gallery-video-thumb] ion-icon {
  width: 50px;
  height: 50px;
  cursor: pointer;
}
@media (max-width: 430px) {
  .product-visual-card { padding: 20px; }
  .product-visual-body { grid-template-columns: 1fr; gap: 16px; }
  .product-visual-body > img { max-height: 220px; }
  .hover-container .media-thumbnail { min-width: 66px; min-height: 66px; padding: .55rem; }
}
.product-div-right span{
  display: block;
}
.product-name{
  font-size: 26px;
  margin-bottom: 22px;
  font-weight: 700;
  letter-spacing: 1px;
  opacity: 0.9;
}
.product-price{
  font-weight: 700;
  font-size: 24px;
  opacity: 0.9;
  font-weight: 500;
}
.product-rating{
  display: flex;
  align-items: center;
  margin-top: 12px;
}
.product-rating span{
  margin-right: 6px;
}
.product-description{
  line-height: 1.6;
  font-weight: 300;
  opacity: 0.9;
  margin-top: 22px;
}
.btn-groups{
  margin-top: 22px;
}
.btn-groups button{
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  display: inline-block;
  font-size: 16px;
  font-family: inherit;
  text-transform: uppercase;
  padding: 15px 16px;
  color: #fff !important;
  -webkit-text-fill-color: #fff;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-groups button .fas{
  margin-right: 8px;
}
.add-cart-btn{
  background-color: var(--eerie-black);
  border: 2px solid var(--eerie-black);
  margin-right: 8px;
}
.add-cart-btn:hover{
  background-color: #fff;
  color: var(--eerie-black) !important;
  -webkit-text-fill-color: var(--eerie-black);
}
.buy-now-btn{
  background-color: var(--eerie-black);
  border: 2px solid var(--eerie-black);
}
.buy-now-btn:hover{
  background-color: #fff;
  color: var(--eerie-black) !important;
  -webkit-text-fill-color: var(--eerie-black);
}

/*-----------------------------------*\
 * #BLOG
\*-----------------------------------*/

.blog .section-title { margin-bottom: 40px; }

.blog-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
}

.blog-card .card-banner {
  background: var(--cultured);
  aspect-ratio: 2 / 1.37;
  overflow: hidden;
  margin-bottom: 25px;
}

.blog-card .card-banner img {
  height: 100%;
  object-fit: cover;
  transition: var(--transition-2);
}

.blog-card:hover .card-banner img { transform: scale(1.05); }

.blog-card .card-content { padding-inline: 20px; }

.blog-card .card-meta-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  margin-bottom: 10px;
}

.blog-card .card-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog-card .card-meta-item ion-icon {
  font-size: 17px;
  --ionicon-stroke-width: 30px;
}

.blog-card .card-meta-link {
  color: inherit;
  font-size: var(--fs-9);
  font-weight: var(--fw-500);
  text-transform: uppercase;
}

.blog-card .card-meta-link:is(:hover, :focus) { color: var(--eerie-black); }

.blog-card .card-title {
  line-height: 1.4;
  text-align: center;
}





/*-----------------------------------*\
 * #NEWSLETTER
\*-----------------------------------*/

.newsletter { padding-bottom: 120px; }

.newsletter-card {
  background-color: var(--cultured);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left;
  padding: 80px 15px;
  text-align: center;
}

.newsletter-card .card-title {
  color: var(--eerie-black);
  font-size: var(--fs-3);
  font-weight: var(--fw-500);
  line-height: 1.2;
  margin-bottom: 30px;
}

.newsletter-card .card-text { margin-bottom: 30px; }

.newsletter-card .input-wrapper {
  position: relative;
  margin-bottom: 20px;
}

.newsletter-card .input-field {
  background: var(--white);
  height: 60px;
  padding-inline: 50px 20px;
  border-radius: 6px;
}

.newsletter-card .input-wrapper ion-icon {
  font-size: 18px;
  position: absolute;
  top: 50%;
  left: 25px;
  transform: translateY(-50%);
}

.newsletter-card .btn { gap: 10px; }





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

.footer-top {
  background: var(--cultured);
  padding-block: var(--section-padding);
}

.footer-top .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer .logo { margin-bottom: 20px; }

.footer-text {
  line-height: 1.6;
  margin-bottom: 20px;
}

.social-list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}

.social-link {
  color: var(--eerie-black);
  font-size: 18px;
  width: 35px;
  height: 35px;
  border: 1px solid var(--sonic-silver);
  display: grid;
  place-items: center;
  border-radius: 50%;
}

.social-link:is(:hover, :focus) {
  background: var(--eerie-black);
  color: var(--white);
  border-color: var(--eerie-black);
}

.footer-list { width: 100%; }

.footer-list-title {
  color: var(--eerie-black);
  font-size: var(--fs-5);
  font-weight: var(--fw-600);
  margin-bottom: 15px;
}

.footer-link {
  position: relative;
  color: inherit;
  padding-block: 5px;
}

.footer-link:is(:hover, :focus) {
  color: var(--eerie-black);
  transform: translateX(15px);
}

.footer-link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -15px;
  transform: translateY(-50%) scale(var(--scale, 0));
  transform-origin: right;
  background: var(--sonic-silver);
  width: 10px;
  height: 2px;
  transition: var(--transition-1);
}

.footer-link:is(:hover, :focus)::before { --scale: 1; }

.footer-bottom { padding-block: 20px; }

.footer-bottom a { color: inherit; }

.copyright {
  margin-bottom: 15px;
  text-align: center;
}

.copyright a {
  display: inline-block;
  color: var(--eerie-black);
  font-weight: var(--fw-600);
}

.footer-bottom-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 5px 15px;
  margin-bottom: 15px;
}

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

.payment {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 15px;
}





/*-----------------------------------*\
 * #MEDIA QUARIES
\*-----------------------------------*/

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

@media (min-width: 480px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-1: 3rem;
    --fs-2: 2rem;

  }


    


  /**
   * CATEGORY
   */

  .category-list > li { width: calc(50% - 15px); }



  /**
   * PRODUCT
   */

  .product-list > li { width: calc(50% - 12.5px); }



  /**
   * FOOTER
   */

  .footer-brand { width: 100%; }

  .footer-text { max-width: 470px; }

  .footer-list { width: calc(50% - 20px); }

}



/**
 * responsive product details
 */

@media screen and (max-width: 992px){
  .product-div{
      grid-template-columns: 100%;
  }
  .product-div-right{
      text-align: center;
  }
  .product-rating{
      justify-content: center;
  }
  .product-description{
      max-width: 400px;
      margin-right: auto;
      margin-left: auto;
  }
}

@media screen and (max-width: 400px){
  .btn-groups button{
      width: 100%;
      margin-bottom: 10px;
  }
}


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

@media (min-width: 580px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-1: 3.75rem;
    --fs-2: 2.375rem;
    --fs-3: 2.25rem;

  }



  /**
   * REUSED STYLE
   */

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

}





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

@media (min-width: 768px) {

  /**
   * REUSED STYLE
   */

  .container { max-width: 700px; }



  /**
   * HERO
   */

  .hero {
    background-position: center;
    min-height: 800px;
  }


  /**
   * BLOG
   */

  .blog-list > li { width: calc(50% - 15px); }



  /**
   * NEWSLETTER
   */

  .newsletter-card > * {
    max-width: 480px;
    margin-inline: auto;
  }

  .newsletter-card .card-form { position: relative; }

  .newsletter-card .input-wrapper { margin-bottom: 0; }

  .newsletter-card .btn {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: max-content;
    padding-inline: 35px;
    border-radius: 0 6px 6px 0;
  }



  /**
   * FOOTER
   */

  .footer-list { width: calc(33.33% - 26.66px); }

  .copyright,
  .footer-bottom-list { margin-bottom: 0; }

  .footer-bottom .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 25px 50px;
  }

}





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

@media (min-width: 992px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-1: 5rem;

  }



  /**
   * RESET
   */

  body { padding-block: 0; }



  /**
   * REUSED STYLE
   */

  .container { max-width: 950px; }



  /**
   * HEADER
   */


  .header {
    position: relative;
    padding-block: 15px;
    border-bottom: 1px solid hsla(0, 0%, 0%, 0.1);
    margin-bottom: 67px;
  }

  .header.active {
    position: fixed;
    top: 0;
    box-shadow: 0 2px 20px hsla(0, 0%, 0%, 0.1);
  }

  .header .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
  }

  .header-search {
    display: block;
    position: relative;
    width: max-content;
  }

  .header-search .input-field {
    border: 1px solid hsla(0, 0%, 0%, 0.1);
    width: 280px;
    padding: 12px 30px;
    border-radius: 6px;
    transition: var(--transition-1);
  }

  .header-search .input-field:focus { outline: 1px solid var(--eerie-black); }

  .header-search .search-btn {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    font-size: 20px;
    color: var(--eerie-black);
  }

  .header-search .search-btn ion-icon { --ionicon-stroke-width: 30px; }

  .header .logo { margin-inline: auto; }

  .nav-open-btn,
  .header-action-btn:nth-child(2),
  .navbar-top,
  .overlay { display: none; }

  .header-actions {
    all: unset;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
  }

  .header-action-btn {
    width: auto;
    min-width: 58px;
  }

  .header-action-label { white-space: nowrap; }

  .navbar {
    all: unset;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    width: 100%;
    background: var(--white);
  }

  .header.active .navbar {
    position: fixed;
    top: 0;
    box-shadow: 0 2px 20px hsla(0, 0%, 0%, 0.1);
  }

  .navbar-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
  }

  .navbar-list > li:not(:last-child) { border-bottom: none; }

  .navbar-link {
    font-size: 15px;
    font-weight: var(--fw-600);
    text-transform: uppercase;
    padding-block: 20px;
  }

  .navbar-link:is(:hover, :focus) { color: var(--candy-pink); }

  .navbar-item-dropdown { position: relative; }

  .navbar-dropdown-toggle { width: auto; padding-block: 20px; }

  .navbar-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 220px;
    padding: 10px 0;
    background: var(--white);
    border: 1px solid var(--cultured);
    box-shadow: 0 12px 24px hsla(0, 0%, 0%, 0.1);
    z-index: 5;
  }

  .navbar-sublink { padding: 10px 20px; }

  .navbar-dropdown.mega {
    left: 50%;
    transform: translateX(-50%);
    width: min(640px, 88vw);
    min-width: 0;
    padding: 20px 28px;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 4px 32px;
  }

  .navbar-item-dropdown.is-open > .navbar-dropdown.mega { display: grid; }

  .navbar-dropdown.mega.align-end {
    left: auto;
    right: 0;
    transform: none;
  }

  .navbar-mega-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .navbar-mega-heading {
    margin: 0;
    padding-top: 10px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--sonic-silver);
  }

  .navbar-sublink.is-featured { color: var(--candy-pink); font-weight: var(--fw-600); }



  /**
   * CATEGORY
   */

  .category-list > li:not(:first-child, :nth-child(2)) { width: calc(25% - 22.5px); }



  /**
   * PRODUCT
   */

  .product-list > li { width: calc(33.33% - 16.66px); }

  .product-card .card-actions {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    transform: translateY(100%);
    visibility: hidden;
    z-index: 2;
    transition: var(--transition-1);
  }

  .product-card .card-banner { overflow: hidden; }

  .product-card .card-banner:hover .card-actions {
    visibility: visible;
    transform: translateY(0);
  }

  .product-card .card-action-btn:first-child { border-radius: 6px 0 0 6px; }

  .product-card .card-action-btn:last-child { border-radius: 0 6px 6px 0; }



  /**
   * BLOG
   */

  .blog-list > li { width: calc(33.33% - 20px); }



  /**
   * NEWSLETTER
   */

  .newsletter-card .card-form { max-width: 650px; }

}





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

@media (min-width: 1200px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-1: 6.25rem;

  }



  /**
   * REUSED STYLE
   */

  .container { max-width: 1150px; }



  /**
   * HEADER
   */

  .header-search .input-field { width: 350px; }

  .header__bar {
    padding: 0.5rem;
    font-size: 0.8rem;
    text-align: center;
    background-color: var(--black);
    color: var(--white);
  }



  /**
   * PRODUCT
   */

  .product-list > li { width: calc(25% - 18.75px); }



  /**
   * FOOTER
   */

  .footer-brand { width: calc(40% - 30px); }

  .footer-text { max-width: 340px; }

  .footer-list { width: calc(20% - 30px); }

  .footer-bottom .container { justify-content: space-between; }

}
