<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*----------------------------------*\
 * #style.css
\*-----------------------------------*/

/**
 * copyright 2022 codewithsadee
 */

:root {

    /* colors */
    --maximum-blue-green_10: hsla(185, 75%, 45%, 0.1);
    --rich-black-fogra-29: hsl(217, 28%, 9%);
    --gray-x-11-gray: hsl(0, 0%, 74%);
    --oxford-blue_60: hsla(230, 41%, 14%, 0.6);
    --bittersweet: hsl(5, 100%, 69%);
    --smoky-black: rgb(7, 6, 1);
    --gainsboro: hsl(0, 0%, 88%);
    --black_90: hsla(0, 0%, 0%, 0.9);
    --cultured: hsl(200, 12%, 95%);
    --salmon: hsl(5, 100%, 73%);
    --white: hsl(0, 0%, 100%);
    --black: hsl(0, 0%, 0%);
    --onyx: hsl(0, 0%, 27%);

    /* typography */
    --ff-roboto: 'Roboto', sans-serif;
    --ff-josefin-sans: 'Josefin Sans', sans-serif;

    --fs-1: 3rem;
    --fs-2: 2.6rem;
    --fs-3: 2.2rem;
    --fs-4: 2rem;
    --fs-5: 1.8rem;
    --fs-6: 1.6rem;
    --fs-7: 1.4rem;
    --fs-8: 1.2rem;

    --fw-300: 300;
    --fw-500: 500;
    --fw-600: 600;
    --fw-700: 700;

    /* transition */

    --transition-1: 0.25s ease;
    --transition-2: 0.5s 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;
     -webkit-tap-highlight-color: transparent;
}

li {
    list-style: none;
     -webkit-tap-highlight-color: transparent;
}

a {
    text-decoration: none;
     -webkit-tap-highlight-color: transparent;
}

a,
img,
span,
table,
tbody,
button,
ion-icon {
    display: block;
     -webkit-tap-highlight-color: transparent;
}

button,
input {
    font: inherit;
    background: none;
    border: none;
     -webkit-tap-highlight-color: transparent;
}

input {
    width: 100%;
     -webkit-tap-highlight-color: transparent;
}

button {
    cursor: pointer;
     -webkit-tap-highlight-color: transparent;
}

address {
    font-style: normal;
    line-height: 1.8;
     -webkit-tap-highlight-color: transparent;
}

html {
    overflow-x: hidden;
    font-family: var(--ff-josefin-sans);
    font-size: 10px;
    scroll-behavior: smooth;
    
}

body {
    overflow-x: hidden;
    background: #fff;
    font-size: 1.6rem;
    padding-block-start: 90px;
     -webkit-tap-highlight-color: transparent;
    /* height: 300vh; */
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: hsl(0, 0%, 95%);
}

::-webkit-scrollbar-thumb {
    background: hsl(0, 0%, 80%);
}

::-webkit-scrollbar-thumb {
    background: hsl(0, 0%, 70%);
}

/* REUSED STYLE */

.container {
    padding-inline: 15px;
     -webkit-tap-highlight-color: transparent;
}

.section {
    padding-block: var(--section-padding);
     -webkit-tap-highlight-color: transparent;
}

.h1,
.h2,
.h3,
.h4 {
    color: #8f2d56;
     -webkit-tap-highlight-color: transparent;
}

.h1 {
    font-size: var(--fs-1);
    font-weight: var(--fw-300);
    line-height: 1.5;
 -webkit-tap-highlight-color: transparent;

}

.h2 {

    font-size: var(--fs-2);
     -webkit-tap-highlight-color: transparent;
}

.h3 {
    font-size: var(--fs-4);
     -webkit-tap-highlight-color: transparent;
}

.h4 {
    font-size: var(--fs-5);
    text-transform: uppercase;
     -webkit-tap-highlight-color: transparent;
}

/* shop now button */
.btn27 {
  background: var(--background, #fff);
  color: var(--color, #8f2d56);
  font-size: 15px;
  display: flex;
  align-items: bottom;
  gap: 5px;
  padding: 13px 20px;
  border: 3px solid var(--border-color, #8f2d56);
  position: absolute;
  top: 415px;
  left: 100px;
  border-radius: 15px;
  -webkit-tap-highlight-color: transparent;
  overflow: hidden; /* Important for shimmer containment */
  position: relative; /* Required for pseudo-element positioning */
}

/* Shimmer effect */
.btn27::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  height: 100%;
  width: 50%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  animation: shimmer 2.5s infinite;
  pointer-events: none;
  z-index: 1;
}
@keyframes shimmer {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}

.btn-primary27:is(:hover, :focus) {
    --background: #fff;
    --border-color: #ffd700;
     -webkit-tap-highlight-color: transparent;
}




.btn {
    background: var(--background, var(--black));
    color: #8f2d56;
    font-size: var(--fs-5);
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 14px 25px;
    border: 3px solid var(--border-color, var(--gray-x-11-gray));
     -webkit-tap-highlight-color: transparent;
}

.btn-primary:is(:hover, :focus) {
    --background: var(--black);
    --border-color: var(--black);
     -webkit-tap-highlight-color: transparent;
}

.btn-secondary {

    --background: #fff;
    --border-color: #8f2d56;
    --color: var(--black);
    border-radius: 15px;
     -webkit-tap-highlight-color: transparent;
}

.btn-secondary:is(:hover, :focus) {
    --background: #fff;
     -webkit-tap-highlight-color: transparent;
}

.has-scrollbar {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    padding-bottom: 20px;
    scroll-snap-type: inline mandatory;
     -webkit-tap-highlight-color: transparent;
}

.has-scrollbar&gt;li {
    min-width: 100%;
    scroll-snap-align: start;
     -webkit-tap-highlight-color: transparent;
}

.has-scrollbar::-webkit-scrollbar {
    height: 10px;
     -webkit-tap-highlight-color: transparent;
}

.has-scrollbar::-webkit-scrollbar-track {
    background: #fff;
    border-radius: 20px;
    outline: 2px solid #8f2d56;
     -webkit-tap-highlight-color: transparent;
}


.has-scrollbar::-webkit-scrollbar-thumb {
    background: #8f2d56;
    border: 2px solid #fff;
    border-radius: 20px;
     -webkit-tap-highlight-color: transparent;
}

.has-scrollbar::-webkit-scrollbar-button {
    width: calc(25%-40px);
     -webkit-tap-highlight-color: transparent;

}

.card-banner {
    
    background: var(--cultured);
    position: relative;
    height: 350px;
    overflow: hidden;
    /* border: 5px solid #FFD700; */
    border-radius: 20px;
     -webkit-tap-highlight-color: transparent;
}
.card-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    height: 100%;
    width: 50%;
    background: linear-gradient(
      120deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.08) 15%,
      rgba(255, 255, 255, 0.08) 25%,
      rgba(255, 255, 255, 0.08) 35%,
      rgba(255, 255, 255, 0) 50%
    );
    transform: skewX(-45deg);
    pointer-events: none;
    z-index: 2;
    animation: shineMove 2.5s ease-in-out infinite;
     border-radius: 20px;
      -webkit-tap-highlight-color: transparent;
    
  }
  
  .card-banner:hover::after {
    animation: shineMove 2.5s linear forwards;
     border-radius: 20px;
      -webkit-tap-highlight-color: transparent;
    
  }
  
  @keyframes shineMove {
    0% {
      left: -100%;
    }
    100% {
      left: 120%;
    }
  }

.image-contain {
    aspect-ratio: 5 / 6; /* Adjust as needed */
    height: auto; /* Maintain the aspect ratio */
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition-2);
     border-radius: 20px;
      -webkit-tap-highlight-color: transparent;
}
.image-contain1 {
    aspect-ratio: 7 / 7; /* Adjust as needed */
    height: auto; /* Maintain the aspect ratio */
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition-2);
     border-radius: 20px;
      -webkit-tap-highlight-color: transparent;
}

.product-card:is(:hover, :focus) .image-contain {
    transform: scale(1.1);
     border-radius: 20px;
      -webkit-tap-highlight-color: transparent;
}
.product-card:is(:hover, :focus) {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s ease;
    border-radius: 20px;
     -webkit-tap-highlight-color: transparent;
  }

.card-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #fff;
    color: #8f2d56;
    padding: 5px 15px;
    font-family: var(--ff-roboto);
    font-size: var(--fs-7);
    border: 1px solid #8f2d56;
    border-radius: 25px;
     -webkit-tap-highlight-color: transparent;
}

.card-action-list {
    position: absolute;
    top: 20px;
    right: -20px;
    opacity: 0;
    transition: var(--transition-1);
     -webkit-tap-highlight-color: transparent;

}

.product-card:is(:hover, :focus) .card-action-list {
    right: 20px;
    opacity: 1;
     -webkit-tap-highlight-color: transparent;
}

.card-action-item {
    position: relative;
     -webkit-tap-highlight-color: transparent;
}

.card-action-item:not(:last-child) {
    margin-bottom: 10px;
     -webkit-tap-highlight-color: transparent;
}

.card-action-btn {
    background: var(--white);
    color:#8f2d56;
    font-size: 18px;
    padding: 10px;
    border-radius: 50%;
    transition: var(--transition-1);
    border: 1px solid #8f2d56;
     -webkit-tap-highlight-color: transparent;
}

.card-action-btn ion-icon {
    --ionicon-stroke-width: 30px;
     -webkit-tap-highlight-color: transparent;
}

.card-action-btn:is(:hover, :focus) {
    background: #FFD700;
    color: var(--black);
     -webkit-tap-highlight-color: transparent;
}

.card-action-tooltip {
    position: absolute;
    top: 50%;
    right: calc(100% + 5px);
    transform: translateY(-50%);
    width: max-content;
    background: var(--black_90);
    color: var(--white);
    font-family: var(--ff-roboto);
    font-size: var(--fs-7);
    padding: 4px 8px;
    border-radius: 4px;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-1);
     -webkit-tap-highlight-color: transparent;

}

.card-action-btn:is(:hover, :focus)+.card-action-tooltip {
    opacity: 1;
     -webkit-tap-highlight-color: transparent;
}

.card-content {
    padding: 24px 15px 0;
    text-align: center;
     -webkit-tap-highlight-color: transparent;
}

.card-cat {

    font-family: var(--ff-roboto);
    color: var(--onyx);
    font-size: var(--fs-7);
    margin-bottom: 12px;
     -webkit-tap-highlight-color: transparent;
}

.card-cat-link {
    display:block;
    color: #8f2d56;
    transition: var(--transition-1);
     -webkit-tap-highlight-color: transparent;
}

.card-cat-link:is(:hover, :focus) {
    color: #FFD700;
     -webkit-tap-highlight-color: transparent;
}
.card-cat-link2 {
    text-align: center;
    color: var(--white);
    transition: var(--transition-1);
    font-size: 15px;
     -webkit-tap-highlight-color: transparent;
}
.card-cat-link2:is(:hover, :focus) {
    color: #FFD700;
     -webkit-tap-highlight-color: transparent;
}
.cart-btn{
    display:inline-block;
    border: 2px solid #FFD700;
    border-radius: 19px;
    margin-bottom: 10px; 
    padding: 10px 20px;
    text-align: center;
     -webkit-tap-highlight-color: transparent;
}
/* changes for onclick button */
.card-cat-link288 {
    display:inline-block;
    border: 1px solid #8f2d56;
    border-radius: 19px;
    margin-bottom: 10px; 
    padding: 10px 20px;
    text-align: center;
     -webkit-tap-highlight-color: transparent;
}
.card-cat-link288:is(:hover, :focus) {
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s ease;
    border-radius: 20px;
     -webkit-tap-highlight-color: transparent;
  }

.cart-btn288:is(:hover, :focus) {
    color: #FFD700;
     -webkit-tap-highlight-color: transparent;
}
.cart-btn288{
    /* display:inline-block;
    border: 2px solid #FFD700;
    border-radius: 19px;
    margin-bottom: 10px; 
    padding: 10px 20px;
    text-align: center; */
    text-align: center;
    color: #8f2d56;
    transition: var(--transition-1);
    font-size: 15px;
     -webkit-tap-highlight-color: transparent;
}

/* add to cart view details */
/* .cart-btn{
    display:inline-block;
    border: 2px solid #FFD700;
    border-radius: 19px;
    margin-bottom: 10px; 
    padding: 10px 20px;
    text-align: center;
} */
.card-cat-link2 {
    /* text-align: center;
    color: var(--white);
    transition: var(--transition-1);
    font-size: 15px; */
    display:inline-block;
    border: 2px solid #FFD700;
    border-radius: 19px;
    margin-bottom: 10px; 
    padding: 10px 20px;
    text-align: center;
     -webkit-tap-highlight-color: transparent;
}
.cart-btn:is(:hover, :focus) {
    color: #FFD700;
     -webkit-tap-highlight-color: transparent;
}

/* buy now */
.card-cat-link3 {
    /* text-align: center;
    color: var(--white);
    transition: var(--transition-1);
    font-size: 15px; */
    display: inline-block;
    border: 2px solid #FFD700;
    border-radius: 19px;
    padding: 10px 20px;
    text-align: center;
     -webkit-tap-highlight-color: transparent;


}
.card-btn1:is(:hover, :focus) {
    color: #FFD700;
     -webkit-tap-highlight-color: transparent;
}
.cart-btn1{
    /* display: inline-block;
    border: 2px solid #FFD700;
    border-radius: 19px;
    padding: 10px 20px;
    text-align: center; */
    text-align: center;
    color: var(--white);
    transition: var(--transition-1);
    font-size: 15px;
     -webkit-tap-highlight-color: transparent;
}



.product-card .card-title {
    margin-bottom: 12px;
     -webkit-tap-highlight-color: transparent;
}

.product-card .card-title&gt;a {
    color: inherit;
    transition: var(--transition-1);
     -webkit-tap-highlight-color: transparent;
}

.product-card .card-title&gt;a:is(:hover, :focus) {
    color: #FFD700;
     -webkit-tap-highlight-color: transparent;
}

.card-price {
    color: #8f2d56;
    font-family: var(--ff-roboto);
    font-weight: var(--fw-600);
     -webkit-tap-highlight-color: transparent;
}

.card-price del {
    color: var(--gray-x-11-gray);
    margin-left: 8px;
     -webkit-tap-highlight-color: transparent;
}

.btn-link {
    --background:#fff;
    --border-color: none;
    padding: 0;
    margin-inline: auto;
    max-width: max-content;
    font-family: var(--ff-roboto);
    font-size: var(--fs-6);
    font-weight: var(--fw-500);
    padding: 6px;
    border: 1px solid #8f2d56;
    border-radius: 10px;
     -webkit-tap-highlight-color: transparent;

}

.btn-link.btn-primary:is(:hover, :focus) {
    border-color: transparent;
     -webkit-tap-highlight-color: transparent;
}






/* header */


.header {
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transition: var(--transition-1);
    z-index: 4;
    /* border: 2px solid #FFD700; */
     -webkit-tap-highlight-color: transparent;
}

.header.active {
    box-shadow: 0 2px 10px hsla(0, 0%, 0%, 0.1);
     -webkit-tap-highlight-color: transparent;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-block: 20px;
     -webkit-tap-highlight-color: transparent;

}

.nav-open-btn {
    font-size: 30px;
    background:#fff;
    color: #8f2d56;
    padding: 8px;
    border-radius: 10px;
    /* border: 1px solid #8f2d56; */
     -webkit-tap-highlight-color: transparent;
}

.nav-open-btn:is(:hover, :focus) {
    /* background: #FFD700; */
    /* border: 1px solid #8f2d56; */
    background:#8f2d56;
    color: #fff;
     -webkit-tap-highlight-color: transparent;
}

.nav-open-btn ion-icon {
    --ionicon-stroke-width: 40px;
     -webkit-tap-highlight-color: transparent;
}

.navbar {
    background: #fff;
    position: fixed;
    top: 0;
    left: -280px;
    width: 100%;
    max-width: 270px;
    height: 100%;
    border-right: 3px solid #8f2d56;
    font-family: var(--ff-roboto);
    overflow-y: auto;
    overscroll-behavior: contain;
    z-index: 2;
    visibility: hidden;
    transition: 0.25s var(--cubic-out);
     -webkit-tap-highlight-color: transparent;
}

.navbar.active {
    visibility: visible;
    transform: translateX(280px);
    transition: 0.5s var(--cubic-in);
     -webkit-tap-highlight-color: transparent;
}

.nav-close-btn {
    color: var(--white);
    position: absolute;
    top: 0;
    right: 0;
    padding: 13px;
    font-size: 25px;
    transition: var(--transition-1);
     -webkit-tap-highlight-color: transparent;
}

.nav-close-btn ion-icon {
    --ionicon-stroke-width: 55px;
    color: #8f2d56;
     -webkit-tap-highlight-color: transparent;
}

.nav-close-btn:is(:hover, :focus) {
    color: #FFD700;
     -webkit-tap-highlight-color: transparent;
}

.navbar .logo {
    background: #fff;
    padding-block: 50px 40px;
     -webkit-tap-highlight-color: transparent;
}

.navbar .logo img {
    margin-inline: auto;
     -webkit-tap-highlight-color: transparent;
}


.navbar-list,
.navbar-action-list {
    margin: 30px;
     -webkit-tap-highlight-color: transparent;
}

.navbar-list {
    padding: 20px;
    border-bottom: 1px solid #8f2d56;
     -webkit-tap-highlight-color: transparent;
}

.navbar-link {
    color: #8f2d56;
    padding-block: 10px;
    transition: var(--transition-1);
     -webkit-tap-highlight-color: transparent;
}

.navbar-link:is(:hover, :focus) {
    color: #FFD700;
     -webkit-tap-highlight-color: transparent;
}

.navbar-item:not(:last-child) {
    border-bottom: 1px solid #8f2d56;
     -webkit-tap-highlight-color: transparent;
}

.navbar-action-list&gt;li:first-child {
    display: none;
     -webkit-tap-highlight-color: transparent;
}

.nav-action-btn {
    color: #8f2d56;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding-block: 10px;
    transition: var(--transition-1);
     -webkit-tap-highlight-color: transparent;
}

.nav-action-btn:is(:hover, :focus) {
    color: #FFD700;
     -webkit-tap-highlight-color: transparent;
}

.nav-action-btn ion-icon {
    font-size: 22px;
    --ionicon-stroke-width: 25px;
     -webkit-tap-highlight-color: transparent;
}

.nav-action-text strong {
    font-weight: initial;
    color: #FFD700;
     -webkit-tap-highlight-color: transparent;
}

.nav-action-badge {
    margin-left: auto;
    font-size: var(--fs-8);
    background: #8f2d56;
    color: #fff;
    width: 18px;
    height: 18px;
    display: grid;
    place-items: center;
    border-radius: 50%;
     -webkit-tap-highlight-color: transparent;
   
}

.overlay {
    position: fixed;
    inset: 0;
    background: hsla(0, 0%, 0%, 0.6);
    z-index: 1;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-1);
     -webkit-tap-highlight-color: transparent;
}

.overlay .active {
    opacity: 1;
    pointer-events: all;
     -webkit-tap-highlight-color: transparent;

}

/* HERO */


.hero {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left;
    min-height: 400px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
     -webkit-tap-highlight-color: transparent;
}

.hero-title {
    margin-bottom: 10px;
     -webkit-tap-highlight-color: transparent;
}


.hero-title&gt;strong {
    display: block;
     -webkit-tap-highlight-color: transparent;
}

.hero-text {
    color: var(--onyx);
    font-family: var(--ff-roboto);
    font-size: var(--fs-8);
    line-height: 1.8;
    max-width: 46ch;
    margin-bottom: 25px;
     -webkit-tap-highlight-color: transparent;
}


/* COLLECTION */

.collection-card {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding-block: 45px 25px;
    /* border: 4px solid #FFD700; */
    border-radius: 15px;
     -webkit-tap-highlight-color: transparent;
}
.collection-card:is(:hover, :focus) {
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s ease;
    border-radius: 20px;
     -webkit-tap-highlight-color: transparent;
  }

#card-title1 {
color: #FFD700;
font-family:'Open Sans';
font-size:20px;
-webkit-text-stroke: 1px transparent; /* Black border of 1px */
-webkit-text-fill-color: transparent; /* Fills the text with white */
background-color: transparent;
border: 2px solid transparent;
border-radius: 10px;
padding: 10px 15px ;
 -webkit-tap-highlight-color: transparent;

}

/* PRODUCTS */

.product .section-title {
    text-align: center;
    margin-bottom: 25px;
     -webkit-tap-highlight-color: transparent;
}

.filter-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
     -webkit-tap-highlight-color: transparent;
}

.filter-btn {
    color: #8f2d56;
    padding: 10px 16px;
    font-family: var(--ff-roboto);
    font-size: var(--fs-7);
    font-weight: var(--fw-500);
    border: 1px solid #8f2d56;
    border-radius: 30px;
     -webkit-tap-highlight-color: transparent;
}

.filter-btn.active {
    background: #FFD700;
    color: var(--black);
    border-color: var(--gray-x-11-gray);
     -webkit-tap-highlight-color: transparent;
}

.product-list {
    display: grid;
    gap: 50px 25px;
     -webkit-tap-highlight-color: transparent;
}


/* CTA */

.cta-list {
    display: grid;
    gap: 40px;
     -webkit-tap-highlight-color: transparent;
}

.cta-card {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    padding: 90px 90px;
     border: 2px solid #8f2d56; 
    border-radius: 20px;
     -webkit-tap-highlight-color: transparent;
}
.cta-card:is(:hover, :focus) {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s ease;
    border-radius: 20px;
     -webkit-tap-highlight-color: transparent;
  }


.cta-card .card-subtitle {
    font-size: var(--fs-5);
    margin-bottom: 15px;
     -webkit-tap-highlight-color: transparent;
}

.cta-card .card-title {
    color: inherit;
    line-height: 1.3;
    margin-bottom: 20px;
     -webkit-tap-highlight-color: transparent;
}

/* SPECIAL */

.special-banner {
    height: 500px;
    background-color: #fff;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    padding: 50px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    border: 2px solid #8f2d56;
    border-radius: 20px;
     -webkit-tap-highlight-color: transparent;
}
.special-banner:is(:hover, :focus) {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s ease;
    border-radius: 20px;
     -webkit-tap-highlight-color: transparent;
  }


.special-banner .banner-title {
    color: #8f2d56;
    font-weight: var(--fw-600);
     -webkit-tap-highlight-color: transparent;
}

.special .section-title {
    /*changes are there -product */
    margin-block: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
     -webkit-tap-highlight-color: transparent;
}

.special .section-title .text {
    min-width: max-content;
     -webkit-tap-highlight-color: transparent;
}

.special .section-title .line {
    width: 100%;
    height: 1px;
    background: #8f2d56;
     -webkit-tap-highlight-color: transparent;
}

/* SERVICE */

.service-list {

    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding-inline: 30px;
     -webkit-tap-highlight-color: transparent;

}

.service-item {
    width: 220px;
     -webkit-tap-highlight-color: transparent;
}

.service-card {
    display: flex;
    align-items: center;
    gap: 15px;
     -webkit-tap-highlight-color: transparent;
}

.service-card .card-icon {
    background: #8f2d56;
    min-width: 55px;
    height: 55px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    border: 1px solid #8f2d56;
     -webkit-tap-highlight-color: transparent;
}

.service-card .card-icon img {
    filter: brightness(0) invert(1);
    width: 60%;
    height: auto;
     -webkit-tap-highlight-color: transparent;
}

.service-card .card-title {
    font-size: var(--fs-6);
    margin: bottom 8px;
     -webkit-tap-highlight-color: transparent;
}

.service-card .card-text {
    color: #8f2d56;
    font-family: var(--ff-roboto);
    font-size: var(--fs-7);
     -webkit-tap-highlight-color: transparent;
}

.service-card .card-text span {
    display: inline-block;
    color: #8f2d56;
     -webkit-tap-highlight-color: transparent;
}

/* INSTA POST */

.insta-post-list {
    gap: 0;
     -webkit-tap-highlight-color: transparent;
}

.insta-post-list .insta-post-item {
    position: relative;
    min-width: 33.33%;
    aspect-ratio: 1 / 1;
     -webkit-tap-highlight-color: transparent;
}

.insta-post-link {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: var(--oxford-blue_60);
    opacity: 0;
    transition: var(--transition-1);
     -webkit-tap-highlight-color: transparent;
}

.insta-post-link ion-icon {
    color: var(--white);
    font-size: 40px;
     -webkit-tap-highlight-color: transparent;
}

.insta-post-link:is(:hover, :focus) {
    opacity: 1;
     -webkit-tap-highlight-color: transparent;
}

/* FOOTER */

.footer {
    font-family: var(--ff-roboto);
     -webkit-tap-highlight-color: transparent;
}

.footer-top {
    background: #fff;
     -webkit-tap-highlight-color: transparent;
}

.footer-brand {
    padding-bottom: 50px;
    border-bottom: 1px solid #8f2d56;
    margin-bottom: 50px;
     -webkit-tap-highlight-color: transparent;
}

.footer-brand .logo {
    margin-bottom: 15px;
     -webkit-tap-highlight-color: transparent;
}

.social-list {
    display: flex;
    align-items: center;
    gap: 8px;
     -webkit-tap-highlight-color: transparent;
}

.social-link {

    background: var(--gainsboro);
    color: var(--onyx);
    font-size: 20px;
    padding: 10px;
    transition: var(--transition-1);
     -webkit-tap-highlight-color: transparent;
}

.social-link :is(:hover, :focus) {
    background: var(--bittersweet);
    color: var(--white);
     -webkit-tap-highlight-color: transparent;
}

.footer-list-title {
    position: relative;
    color: #8f2d56;
    font-family: var(--ff-josefin-sans);
    font-size: var(--fs-3);
    font-weight: var(--fw-700);
    margin-bottom: 25px;
     -webkit-tap-highlight-color: transparent;
}

.footer-list-title::after {

    content: "";
    display: block;
    background: #8f2d56;
    width: 50px;
    height: 2px;
    margin-top: 10px;
     -webkit-tap-highlight-color: transparent;
}

.footer-link {
    color: #8f2d56;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-block: 6px;
    transition: var(--transition-1);
     -webkit-tap-highlight-color: transparent;
}

a.footer-link:is(:hover, :focus) {
    color: #FFD700;
     -webkit-tap-highlight-color: transparent;
}

.footer-link-text {
    flex: 1;
     -webkit-tap-highlight-color: transparent;
}

.footer-list:not(:last-child) {
    margin-bottom: 30px;
     -webkit-tap-highlight-color: transparent;
}

.footer-list:first-child ion-icon {
    color: #8f2d56;
    font-size: 22px;
     -webkit-tap-highlight-color: transparent;
}

.table-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    text-align: left;
    padding-block: 6px;
     -webkit-tap-highlight-color: transparent;
}

.table-head {
    color:#8f2d56;
    font-weight: var(--fw-500);
     -webkit-tap-highlight-color: transparent;
}

.table-data {
    color: #8f2d56;
     -webkit-tap-highlight-color: transparent;

}

.newsletter-text {
    color: var(--white);
    line-height: 1.7;
    margin-bottom: 20px;
     -webkit-tap-highlight-color: transparent;
}

.newsletter-form {
    position: relative;
     -webkit-tap-highlight-color: transparent;
}

.newsletter-input {
    background: var(--white);
    color: var(--onyx);
    padding: 15px 25px;
    padding-right: 120px;
     -webkit-tap-highlight-color: transparent;
}

.newsletter-form .btn-primary {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    font-family: var(--ff-josefin-sans);
    font-size: var(--fs-6);
    font-weight: var(--fw-600);
    padding-inline: 20px;
     -webkit-tap-highlight-color: transparent;
}

.footer-bottom {
    background: #fff;
    padding-block: 20px;
     -webkit-tap-highlight-color: transparent;
}

.copyright {
    text-align: center;
    color: #8f2d56;
     -webkit-tap-highlight-color: transparent;
}

.copyright-link {
    display: inline-block;
    color: #8f2d56;
     -webkit-tap-highlight-color: transparent;
}



/* GO TOP */



.go-top-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--black);
    color: var(--white);
    font-size: 20px;
    padding: 10px;
    border: 4px solid var(--white);
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-1);
    z-index: 2;
     -webkit-tap-highlight-color: transparent;
}

.go-top-btn.active {
    opacity: 1;
    visibility: visible;
     -webkit-tap-highlight-color: transparent;
}

.go-top-btn:is(:hover, :focus) {
    background: var(--black);
     -webkit-tap-highlight-color: transparent;
}


/* MEDIA QUERIES */


/* responsive for larger than 575px screen */
@media (max-width:575px) {
    /* CUSTOM PROPERTY */
 .card-banner{
        background: #fff;
        position: relative;
        height: 420px;
        overflow: hidden;
        /* border: 5px solid #FFD700; */
        border-radius: 10px;
         -webkit-tap-highlight-color: transparent;
        
    }
    
    .image-contain {
        aspect-ratio: 5 / 6; /* Adjust as needed */
        height: auto; /* Maintain the aspect ratio */
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        transition: var(--transition-2);
        border-radius: 20px;
         -webkit-tap-highlight-color: transparent;
    }
    .image-contain1 {
        aspect-ratio: 5 / 6; /* Adjust as needed */
        height: auto; /* Maintain the aspect ratio */
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        transition: var(--transition-2);
        border-radius: 20px;
         -webkit-tap-highlight-color: transparent;
    }
    :root {

        /* typography
         */

        --fs-1: 4rem;
    }

    /* REUSED STYLE */

    .header .container {
       display: none;
        -webkit-tap-highlight-color: transparent;
    }
    /* .nav-action-list {
        gap: 20px;
    }
    .navbar-list .nav-action-list {
        display: flex;
    }
    .nav-action-btn {
        position: relative; 
    } */

  /* HEADER */

  /* .nav-open-btn,
  .nav-close-btn,
  .navbar .logo,
  .nav-action-text,
  .overlay {
      display: none;
  } */

  /* .navbar,
  .navbar-list,
  .nav-action-list {
      all: unset;
  } */

  /* .navbar-item:not(:last-child) {
      border: none;
  } */
/* shop now */
.btn27 {
    background: var(--background, #fff);
    color: var(--color, #8f2d56);
    font-size:15px;
    display: flex;
    align-items: bottom;
    gap: 5px;
    padding: 13px 20px;
    border: 3px solid var(--border-color,#8f2d56);
    position: absolute;
    top:415px;
    left: 100px;
border-radius: 15px;
 -webkit-tap-highlight-color: transparent;
}

.btn-primary27:is(:hover, :focus) {
    --background: #fff;
    --border-color: #ffd700;
     -webkit-tap-highlight-color: transparent;
}

  .nav-action-list {
      display: flex;
       -webkit-tap-highlight-color: transparent;
  }

  .nav-action-list {
      gap: 20px;
       -webkit-tap-highlight-color: transparent;
  }

  /* .navbar {
      display: flex;
      align-items: center;
      flex-grow: 1;
  } */

  .navbar-list {
      margin-inline: auto;
      gap: 35px;
       -webkit-tap-highlight-color: transparent;
  }

  .navbar-link {
      font-family: var(--ff-roboto);
      font-weight: var(--fw-500);
       -webkit-tap-highlight-color: transparent;
  }

  .navbar-action-list&gt;li:first-child {
      display: block;
       -webkit-tap-highlight-color: transparent;
  }

  .nav-action-btn {
      position: relative;
       -webkit-tap-highlight-color: transparent;
  }

  .nav-action-badge ion-icon {
      --ionicon-stroke-width: 30px;
       -webkit-tap-highlight-color: transparent;
  }

  .nav-action-badge {
      position: absolute;
      top: 5px;
      right: -12px;
       -webkit-tap-highlight-color: transparent;
  }
   /* CTA */
 .cta-list {
    grid-template-columns: repeat(2, 1fr); /* 2 columns side by side */
    gap: 20px; /* optional: adds spacing between grid items */
  }
    .cta-card {
        text-align: left;
         -webkit-tap-highlight-color: transparent;
    }

    .cta-card .card-title {
        max-width: 14ch;
         -webkit-tap-highlight-color: transparent;
    }

    .cta-card .btn-link {
        margin-inline: 0;
         -webkit-tap-highlight-color: transparent;
    }
}

/* special search bar class for mobile */
.header .container1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-block: 20px;
    padding-inline: 15px;
    padding-block-end: 2px ;
     -webkit-tap-highlight-color: transparent;
}
.header .container2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-block: 2px;
    padding-inline: 30px;
    padding-block-end: 2px ;
     -webkit-tap-highlight-color: transparent;
}

/* responsive for larger than 575px screen */
@media (min-width:575px) {
    /* CUSTOM PROPERTY */

    :root {

        /* typography
         */

        --fs-1: 4rem;
        
    }

    /* REUSED STYLE */

    .container {
        max-width: 650px;
        width: 100%;
        margin-inline: auto;
         -webkit-tap-highlight-color: transparent;
    }
    .header .container1 {
        display: none;
         -webkit-tap-highlight-color: transparent;

    }
    .header .container2 {
        display: none;
         -webkit-tap-highlight-color: transparent;

    }
    .has-scrollbar&gt;li {
        min-width: calc(50% - 12.5px);
         -webkit-tap-highlight-color: transparent;
    }


    /* HERO */

    .hero-text {
        font-size: var(--fs-7);
         -webkit-tap-highlight-color: transparent;
    }


    /* PRODUCTS */


    .product-list {
        grid-template-columns: 1fr 1fr;
         -webkit-tap-highlight-color: transparent;
    }
    


    /* CTA */

    .cta-card {
        text-align: left;
         -webkit-tap-highlight-color: transparent;
    }

    .cta-card .card-title {
        max-width: 14ch;
         -webkit-tap-highlight-color: transparent;
    }

    .cta-card .btn-link {
        margin-inline: 0;
         -webkit-tap-highlight-color: transparent;
    }



    /* INSTA POST */




    .insta-post-list .insta-post-item {
        min-width: 25%;
         -webkit-tap-highlight-color: transparent;
    }



    /* FOOTER */


    .footer-brand .logo {
        margin-bottom: 0;
         -webkit-tap-highlight-color: transparent;
    }

    .footer-brand {
        display: flex;
        justify-content: space-between;
        align-items: center;
         -webkit-tap-highlight-color: transparent;
    }


    .footer-link-box {
        display: grid;
        grid-template-columns: 1fr 1fr;
        column-gap: 30px;
         -webkit-tap-highlight-color: transparent;
    }

    .btn27 {
        background: var(--background, #fff);
        color: var(--color, #8f2d56);
        font-size:15px;
        display: flex;
        align-items: bottom;
        gap: 5px;
        padding: 13px 20px;
        border: 3px solid var(--border-color,#8f2d56);
        position: absolute;
        top:415px;
        left: 100px;
    border-radius: 15px;
     -webkit-tap-highlight-color: transparent;
    }
    .btn-primary27:is(:hover, :focus) {
        --background: #fff;
        --border-color: #ffd700;
         -webkit-tap-highlight-color: transparent;
    }
    }



/* responsive for larger than 768px screen */

@media (min-width:768px) {
    /* CUSTOM PROPERTY */

    :root {

        /* typography
         */

        --fs-2: 3rem;
    }


    /* shop now */
   .btn27 {
    background: var(--background, #fff);
    color: var(--color, #8f2d56);
    font-size:15px;
    display: flex;
    align-items: bottom;
    gap: 5px;
    padding: 13px 20px;
    border: 3px solid var(--border-color,#8f2d56);
    position: absolute;
    top:415px;
    left: 100px;
border-radius: 15px;
 -webkit-tap-highlight-color: transparent;
}
.btn-primary27:is(:hover, :focus) {
    --background: #fff;
    --border-color: #ffd700;
     -webkit-tap-highlight-color: transparent;
}
    
    /* REUSED STYLE */

    .container {
        max-width: 720px;
         -webkit-tap-highlight-color: transparent;
    }

    .h4 {
        --fs-5: 2rem;
         -webkit-tap-highlight-color: transparent;
    }

    /* SPECIALS
    */


    .special-banner .banner-title {
        --fs-4: 2.2rem;
         -webkit-tap-highlight-color: transparent;
    }

    .special-product .has-scrollbar&gt;li {
        min-width: 100%;
         -webkit-tap-highlight-color: transparent;
    }

    /*change*/

    .special .container {
        display: flex;
        gap: 25px;
         -webkit-tap-highlight-color: transparent;
    }

    .special .section-title {
        margin-block-start: 0;
         -webkit-tap-highlight-color: transparent;
    }

    .special-banner,
    .special-product {
        min-width: calc(50% - 12.5px);
         -webkit-tap-highlight-color: transparent;
    }

    /*change*/

    .special-banner {
        height: auto;
         -webkit-tap-highlight-color: transparent;
    }



    /* INSTA POST */




    .insta-post-list .insta-post-item {
        min-width: 20%;
         -webkit-tap-highlight-color: transparent;
    }


    /* go to top */

    .go-top-btn {
        padding: 15px;
        border-width: 6px;
        bottom: 30px;
        right: 30px;
         -webkit-tap-highlight-color: transparent;
    }






}

/* responsive for larger than 992px screen */

@media (min-width:992px) {

    /* CUSTOM PROPERTY */

    :root {

        /* typography
     */

        --fs-3: 2.4rem;
    }

    /* shop now */
    .btn27 {
        background: var(--background, #fff);
        color: var(--color, #8f2d56);
        font-size:15px;
        display: flex;
        align-items: bottom;
        gap: 5px;
        padding: 13px 20px;
        border: 3px solid var(--border-color,#8f2d56);
        position: absolute;
        top:415px;
        left: 100px;
    border-radius: 15px;
     -webkit-tap-highlight-color: transparent;
    }
    .btn-primary27:is(:hover, :focus) {
        --background: #fff;
        --border-color: #ffd700;
         -webkit-tap-highlight-color: transparent;
    }

    /* REUSED STYLE */

    .container {
        max-width: 970px;
         -webkit-tap-highlight-color: transparent;
    }

    .has-scrollbar&gt;li {
        min-width: calc(33.33% - 16.66px);
         -webkit-tap-highlight-color: transparent;
    }

    /* HEADER */

    .nav-open-btn,
    .nav-close-btn,
    .navbar .logo,
    .nav-action-text,
    .overlay {
        display: none;
         -webkit-tap-highlight-color: transparent;
    }

    .navbar,
    .navbar-list,
    .nav-action-list {
        all: unset;
         -webkit-tap-highlight-color: transparent;
    }

    .navbar-item:not(:last-child) {
        border: none;
         -webkit-tap-highlight-color: transparent;
    }

    .navbar-list,
    .nav-action-list {
        display: flex;
         -webkit-tap-highlight-color: transparent;
    }

    .nav-action-list {
        gap: 20px;
         -webkit-tap-highlight-color: transparent;
    }

    .navbar {
        display: flex;
        align-items: center;
        flex-grow: 1;
         -webkit-tap-highlight-color: transparent;
    }

    .navbar-list {
        margin-inline: auto;
        gap: 35px;
         -webkit-tap-highlight-color: transparent;
    }

    .navbar-link {
        font-family: var(--ff-roboto);
        font-weight: var(--fw-500);
         -webkit-tap-highlight-color: transparent;
    }

    .navbar-action-list&gt;li:first-child {
        display: block;
         -webkit-tap-highlight-color: transparent;
    }

    .nav-action-btn {
        position: relative;
         -webkit-tap-highlight-color: transparent;
    }

    .nav-action-badge ion-icon {
        --ionicon-stroke-width: 30px;
         -webkit-tap-highlight-color: transparent;
    }

    .nav-action-badge {
        position: absolute;
        top: 5px;
        right: -12px;
         -webkit-tap-highlight-color: transparent;
    }

    /* HERO */

    .hero {
        height: 480px;
         -webkit-tap-highlight-color: transparent;
    }

    /* PRODUCTS */

    .product-list {
        grid-template-columns: repeat(3, 1fr);
         -webkit-tap-highlight-color: transparent;
    }



    /* CTA */

    .cta-list {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
         -webkit-tap-highlight-color: transparent;
    }

    .cta-card {
        padding-inline: 50px;
         -webkit-tap-highlight-color: transparent;
    }

    /* SPECIALS */

    .special-banner {
        min-width: calc(33.33% - 25px);
         -webkit-tap-highlight-color: transparent;
    }

    .special-product {
        min-width: 66.66%;
         -webkit-tap-highlight-color: transparent;
    }

    .special-product .has-scrollbar&gt;li {
        min-width: calc(50% - 12.5px);
         -webkit-tap-highlight-color: transparent;
    }
    

    /* INSTA POST */


    .insta-post-list .insta-post-item {
        min-width: 16.666%;
         -webkit-tap-highlight-color: transparent;
    }


}


/* responsive for larger than 1200px screen */

@media (min-width:1200px) {

    /* CUSTOM PROPERTY */

    :root {

        /* typography
             */

        --fs-1: 5rem;
        --fs-2: 3.6rem;
    }

/* shop now */
.btn27 {
    background: var(--background, #fff);
    color: var(--color, #8f2d56);
    font-size:15px;
    display: flex;
    align-items: bottom;
    gap: 5px;
    padding: 13px 20px;
    border: 3px solid var(--border-color,#8f2d56);
    position: absolute;
    top:550px;
    left: 190px;
border-radius: 15px;
 -webkit-tap-highlight-color: transparent;
}
.btn-primary27:is(:hover, :focus) {
    --background: #fff;
    --border-color: #ffd700;
     -webkit-tap-highlight-color: transparent;
}
    /* REUSED STYLE
         */



    .container {
        max-width: 1280px;
         -webkit-tap-highlight-color: transparent;
    }


    /* HERO */


    .hero {
        height: 580px;
         -webkit-tap-highlight-color: transparent;
    }

    .hero .container {
        max-width: 1000px;
         -webkit-tap-highlight-color: transparent;
    }

    .hero-text {
        font-size: var(--fs-6);
        max-width: 50ch;
         -webkit-tap-highlight-color: transparent;
    }

    /* PRODUCTS */


    .product-list {
        grid-template-columns: repeat(4, 1fr);
         -webkit-tap-highlight-color: transparent;
    }


    /* SPECIALS */

    .special-banner {
        min-width: calc(25%-25px);
         -webkit-tap-highlight-color: transparent;
    }

    .special-product .has-scrollbar&gt;li {
        min-width: calc(33.33% - 16.66px);
         -webkit-tap-highlight-color: transparent;
    }

    .special-banner .banner-title {
        --fs-4: 2.4rem;
         -webkit-tap-highlight-color: transparent;
    }

    /* SERVICE */

    .service-item {
        width: 275px;
         -webkit-tap-highlight-color: transparent;
    }

    .service-card .card-icon {
        min-width: 70px;
        height: 70px;
         -webkit-tap-highlight-color: transparent;
    }

    .service-card .card-title {
        --fs-6: 2rem;
         -webkit-tap-highlight-color: transparent;
    }


    /* INSTA POST */


    .insta-post {
        padding-block-end: 0;
         -webkit-tap-highlight-color: transparent;
    }

    .insta-post-list .insta-post-item {
        min-width: 12.5%;
         -webkit-tap-highlight-color: transparent;
    }


    .insta-post-list {
        padding-bottom: 0;
         -webkit-tap-highlight-color: transparent;
    }

    /* FOOTER */

    .footer-link-box {
        grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
        gap: 50px;
         -webkit-tap-highlight-color: transparent;

    }
}

.special-text .h2 {
    margin-bottom: 10px;
    color: black;
    font-size: var(--fs-1);
    font-weight: var(--fw-300);
    line-height: 1.5;
     -webkit-tap-highlight-color: transparent;
}

.card-title1 .h4 {
    color: black;
    text-shadow: 3px solid #FFD700;
     -webkit-tap-highlight-color: transparent;
}

.btn1 {
    position: relative;
    left: 100px;
     -webkit-tap-highlight-color: transparent;
}

.remember-forgot .label .span {
    color: #131312;
     -webkit-tap-highlight-color: transparent;
}

#whatsapp-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #25D366;
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
     -webkit-tap-highlight-color: transparent;
}

#whatsapp-button img {
    width: 50px;
    height: 50px;
     -webkit-tap-highlight-color: transparent;
}

#whatsapp-button:hover {
    transform: scale(1.1);
     -webkit-tap-highlight-color: transparent;
}

#alert-banner {
    background-color: white;
    /* Yellow color for visibility */
    color: black;
    text-align: center;
    padding: 10px;
    font-size: 16px;
    font-weight: bold;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
     -webkit-tap-highlight-color: transparent;
}

#alert-banner a {
    color: black;
    text-decoration: none;
    font-weight: bold;
     -webkit-tap-highlight-color: transparent;
}

#close-alert {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 30px;
     -webkit-tap-highlight-color: transparent;
}

/* .header {
    padding-inline: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-block: 0px;
    
} */

/* search button css */
.search-button {
    flex: 1;
    padding: 4px;
    border-radius: 7px;
    border: 1px solid #8f2d56;
    background-color: #fff;
     -webkit-tap-highlight-color: transparent;
}
.search-button:hover::placeholder {
 color:black; 
  -webkit-tap-highlight-color: transparent;
}

.search-button::placeholder{
color: #8f2d56;
font-size: 15px;
padding-left: 7px;
font-weight: 10;
 -webkit-tap-highlight-color: transparent;
}
.icon-btn {
    font-size: 24px;
    color: #8f2d56;
    background-color: transparent; /* Optional, to show no background initially */
    border: none; /* Optional, remove border */
    cursor: pointer; /* Ensures the pointer changes to a hand icon */
    transition: color 0.3s ease, background-color 0.3s ease; /* Smooth transitions */
     -webkit-tap-highlight-color: transparent;
}

.icon-btn:hover {
    color: #FFD700; /* Change text/icon color on hover */
     -webkit-tap-highlight-color: transparent;
}

#pricetext {
    color: #FFD700;
     -webkit-tap-highlight-color: transparent;
}

/* cart css */
.container8 {
    color: #fff;
    box-sizing: border-box;
    width: 100%;
  height: 100%;
  padding: 10px;
  margin: 0;
  margin-top: -25px;
  background-color: #fff;
  font-family: 'Roboto', sans-serif;
   -webkit-tap-highlight-color: transparent;
}
.shopping-cart {
    width: 750px;
    height: auto;
    margin: 80px auto;
    background: #FFFFFF;
    box-shadow: 1px 2px 3px 0px rgba(0,0,0,0.10);
    border-radius: 6px;
    border: 3px solid #8f2d56;
  
    display: flex;
    flex-direction: column;
     -webkit-tap-highlight-color: transparent;
      border-radius: 20px;
  }
  .shopping-cart:is(:hover, :focus) {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s ease;
    border-radius: 20px;
     -webkit-tap-highlight-color: transparent;
  }
  .title1 {
    height: 60px;
    border-bottom: 1px solid #E1E8EE;
    padding: 20px 30px;
    color: #5E6977;
    font-size: 18px;
    font-weight: 400;
     -webkit-tap-highlight-color: transparent;
  }
  .item1 {
    padding: 20px 30px 20px 30px;
    height: 130px;
    display: flex;
     -webkit-tap-highlight-color: transparent;
  }
  .item1{
    border-top:  1px solid #E1E8EE;
    border-bottom:  1px solid #E1E8EE;
     -webkit-tap-highlight-color: transparent;
  }
    .item1:is(:hover, :focus) {
    box-shadow: 0 3px 4px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s ease;
    border-radius: 8px;
     -webkit-tap-highlight-color: transparent;
  }
    
  /* Buttons -  Delete and Like */
.buttons1 {
    position: relative;
    padding-top: 30px;
    margin-right: 60px;
    color: black;
  }
  .button78{
    position: relative;
    padding-top: 25px;
    margin-right: 100px;
    padding-left: 30px;
    width: 18px;
    height: 17px;
     -webkit-tap-highlight-color: transparent;
  }
  .button78 img{
   
    width: 25px;
    height: 25px;
     -webkit-tap-highlight-color: transparent;
  }

  .delete-btn1 {
    display: inline-block;
    cursor: pointer;
    width: 18px;
    height: 17px;
    background: url("delete-icn.svg") no-repeat center;
    margin-right: 20px;
     -webkit-tap-highlight-color: transparent;
  }
  .like-btn {
    position: absolute;
    top: 9px;
    left: 15px;
    display: inline-block;
    background: url('twitter-heart.png');
    width: 60px;
    height: 60px;
    background-size: 2900%;
    background-repeat: no-repeat;
    cursor: pointer;
     -webkit-tap-highlight-color: transparent;
  }
  .is-active {
    animation-name: animate;
    animation-duration: .8s;
    animation-iteration-count: 1;
    animation-timing-function: steps(28);
    animation-fill-mode: forwards;
     -webkit-tap-highlight-color: transparent;
  }
  
  @keyframes animate {
    0%   { background-position: left;  }
    50%  { background-position: right; }
    100% { background-position: right; }
  }
  /* Product Image */
.image53 {
    margin-right: 50px;
     -webkit-tap-highlight-color: transparent;
  }
  #cartimage{
    width: 100px;
    height: 100px;
     -webkit-tap-highlight-color: transparent;
     border-radius: 8px;
  }
   #cartimage:is(:hover, :focus) {
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s ease;
    border-radius: 8px;
     -webkit-tap-highlight-color: transparent;
  }

  /* Product Description */
.description23 {
    padding-top: 10px;
    margin-right: 100px;
    width: 115px;
     -webkit-tap-highlight-color: transparent;
  }
  
  .description23 span {
    display: block;
    font-size: 16px;
    color: black;
    font-weight: 400;
     -webkit-tap-highlight-color: transparent;
     font-family: Sans;
  }
  
  .description23 span:first-child {
    margin-bottom: 5px;
     -webkit-tap-highlight-color: transparent;
  }
  .description23 span:last-child {
    font-weight: 300;
    margin-top: 8px;
    color: black;
     -webkit-tap-highlight-color: transparent;
  }

  /* Product Quantity */
.quantity1 {
    padding-top: 0px;
    margin-right: 60px;
     -webkit-tap-highlight-color: transparent;
  }
  .quantity1 input{
    margin:0px 0px;
    --webkit-appearance: none;
    border: none;
    text-align: center;
    align-items: center;
    width: 32px;
    font-size: 16px;
    color: #43484D;
    font-weight: 300;
     -webkit-tap-highlight-color: transparent;
  }
     /* Hide the spinner in modern browsers */
     input[type="number"]::-webkit-inner-spin-button,
     input[type="number"]::-webkit-outer-spin-button {
       -webkit-appearance: none;
       margin: 0;
        -webkit-tap-highlight-color: transparent;
     }
      /* Hide the spinner in Firefox */
    input[type="number"] {
        --moz-appearance: textfield;
         -webkit-tap-highlight-color: transparent;
      }

 
  /* button[class*=btn] {
  width: 30px;
  height: 30px;
  background-color: #E1E8EE;
  border-radius: 6px;
  border: none;
  cursor: pointer;
} */
.minus-btn{
    width: 30px;
  height: 30px;
  background-color: #E1E8EE;
  border-radius: 7px;
  border: none;
  cursor: pointer;
  margin-left: 1px;
   -webkit-tap-highlight-color: transparent;
}
.minus-btn img {
  margin-bottom: 3px;
  margin-left: 10px;
   -webkit-tap-highlight-color: transparent;
}
.plus-btn{
    width: 30px;
    height: 30px;
    background-color: #E1E8EE;
    border-radius: 7px;
    border: none;
    cursor: pointer;
    margin-left: 1px;
     -webkit-tap-highlight-color: transparent;
}
.plus-btn img {
  margin-top: 2px;
  margin-left: 10px;
   -webkit-tap-highlight-color: transparent;
}
/* button:focus,
input:focus {
  outline:0;
} */
  
 /* Total Price  */
.total-price {
  width: 83px;
  padding-top: 27px;
  text-align: center;
  font-size: 16px;
  color: #43484D;
  font-weight: 300;
  margin-right: 60px;
   -webkit-tap-highlight-color: transparent;
}
.title2 {
    height: 32px;
    border-top: 1px solid #E1E8EE;
    padding: 6px 30px;
    color: #5E6977;
    font-size:20px;
    font-weight: 400;
    text-align: left;
     -webkit-tap-highlight-color: transparent;
  }
  .title4 {
    height: 32px;
    padding: 6px 30px;
    color: #5E6977;
    font-size:20px;
    font-weight: 400;
    text-align: left;
     -webkit-tap-highlight-color: transparent;
  }
  .title46 {
    height: 32px;
    padding: 6px 30px;
    color: #5E6977;
    font-size:20px;
    font-weight: 400;
    text-align: left;
     -webkit-tap-highlight-color: transparent;
  }
  
  .title3 {
    height: 60px;
    margin: auto 20px;
    border-top: 1px solid #E1E8EE;
    padding: 6px 30px;
    color: #5E6977;
    font-size:20px;
    font-weight: 400;
     -webkit-tap-highlight-color: transparent;
     align-items: center;
     text-align: center;
  }
  .title3 a {
  position: relative;
  display: inline-block;
  background-color: #E1E8EE;
  color: black;
  padding: 5px 45px;
  border: 2px solid #5E6977;
  border-radius: 12px;
  font-size: 22px;
  margin-top: 7px;
  margin: 7px auto;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
  overflow: hidden; /* Important for hiding shine overflow */
}

/* Shimmer effect */
.title3 a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  height: 100%;
  width: 50%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  animation: shimmer 2s infinite;
  pointer-events: none;
  
}

/* Keyframes for shimmer */
@keyframes shimmer {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}

  .title7 {
    height: 60px;
    border-top: 1px solid #E1E8EE;
    padding: 22px 30px;
    color: black;
    font-size:20px;
    font-weight: 400;
    text-align: center;
     -webkit-tap-highlight-color: transparent;
  }
  .title5 {
    height: 32px;
    padding: 6px 30px;
    color: #5E6977;
    font-size:17px;
    font-weight: 400;
    text-align: center;
    text-decoration: underline;
     -webkit-tap-highlight-color: transparent;

    
  }

/* Responsive */
@media (max-width: 800px) {
    .shopping-cart {
      width: 100%;
      height: auto;
      overflow: hidden;
       -webkit-tap-highlight-color: transparent;
    }
    .title1 {
        height: 57px;
        border-bottom: 1px solid #E1E8EE;
        padding: 20px 30px;
        color: #5E6977;
        font-size:20px;
        font-weight: 400;
        text-align: center;
         -webkit-tap-highlight-color: transparent;
      }
      .title2 {
        height: 23px;
        padding: 6px 30px;
        color: #5E6977;
        font-size:17px;
        font-weight: 400;
        text-align: left;
         -webkit-tap-highlight-color: transparent;
      }
      .title4 {
        height: 25px;
        padding: 6px 30px;
        color: #5E6977;
        font-size:17px;
        font-weight: 400;
        text-align: left;
         -webkit-tap-highlight-color: transparent;
      }
      .title46 {
        height: 25px;
        padding: 6px 30px;
        color: #5E6977;
        font-size:14px;
        font-weight: 400;
        text-align: left;
        margin-bottom: 5px;
         -webkit-tap-highlight-color: transparent;
      }
      .title5 {
        height: 32px;
        padding: 6px 30px;
        color: #5E6977;
        font-size:17px;
        font-weight: 400;
        text-align: center;
        text-decoration: underline;
         -webkit-tap-highlight-color: transparent;
      }
    .item1 {
      height: auto;
      flex-wrap:nowrap;
      justify-content: center;
      padding: 5px 0px;
       -webkit-tap-highlight-color: transparent;
    /* height: 120px; */
    }
      .item1:is(:hover, :focus) {
    box-shadow: 0 3px 4px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s ease;
    border-radius: 8px;
     -webkit-tap-highlight-color: transparent;
  }
    
    #cartimage{
        width: 70px;
        height: 70px;
         -webkit-tap-highlight-color: transparent;
         padding-left: 3px;
         border-radius: 8px;
         padding-top: 3px;
      }
    .image53{
        width: 80px;
        text-align: center;
        margin: auto ;
         -webkit-tap-highlight-color: transparent;
      }
  
    .quantity1{
        width: 40px;
        text-align: center;
         margin: auto auto;
         padding: 2px 2px;
          -webkit-tap-highlight-color: transparent;
      }
  
    .description23 {
      width: 75px;
      text-align: center;
      margin: 6px 0;
      margin-left: -7px;
      padding-top: 5px;
       -webkit-tap-highlight-color: transparent;
    }

    /* .buttons {
      margin-right: 20px;
    } */
    .minus-btn{
        width: 30px;
      height: 30px;
      background-color: #E1E8EE;
      border-radius: 7px;
      border: none;
      cursor: pointer;
      margin-left: 5px;
       -webkit-tap-highlight-color: transparent;
    }
    .minus-btn img {
      margin-bottom: 3px;
      margin-left: 10px;
       -webkit-tap-highlight-color: transparent;
    }
    .plus-btn{
        width: 30px;
        height: 30px;
        background-color: #E1E8EE;
        border-radius: 7px;
        border: none;
        cursor: pointer;
        margin-left: 5px;
         -webkit-tap-highlight-color: transparent;
    }
    .plus-btn img {
      margin-top: 2px;
      margin-left: 10px;
       -webkit-tap-highlight-color: transparent;
    }

    .buttons1 {
        position: relative;
        padding-top: 24px;
        margin-right: 10px;
        margin-left: 10px;
      }
    
      .delete-btn1 {
        display: inline-block;
        cursor: pointer;
        width: 0px;
        height: 0px;
        background: url("delete-icn.svg") no-repeat center;
        margin-right: 20px;
         -webkit-tap-highlight-color: transparent;
      }
      .like-btn {
        position: absolute;
        top: 9px;
        left: 15px;
        display: inline-block;
        background: url('twitter-heart.png');
        width: 60px;
        height: 60px;
        background-size: 2900%;
        background-repeat: no-repeat;
        cursor: pointer;
         -webkit-tap-highlight-color: transparent;
      }
      .total-price {
        width: 40px;
        padding-top: 35px;
        text-align: center;
        font-size: 16px;
        color: #43484D;
        font-weight: 300;
        margin-right: 0px;
         -webkit-tap-highlight-color: transparent;
      }
      .button78{
        position: relative;
        padding-top: 30px;
        margin-right: 60px;
        padding-left: 30px;
        width: 18px;
        height: 17px;
         -webkit-tap-highlight-color: transparent;
      }
      .button78 img{
        width: 25px;
        height: 25px;
         -webkit-tap-highlight-color: transparent;
      }
  }
  
  .review28 {
    border-bottom: 1px solid #ddd;
    padding: 15px;
    background: #fff;
    border-radius: 8px;
    margin-bottom: 10px;
    margin: 20px;
    border: 4px solid #FFD700;
     -webkit-tap-highlight-color: transparent;
}
.logo {
  position: relative;
  display: inline-block;
  -webkit-tap-highlight-color: transparent;
  overflow: hidden;
}

/* Silver Shine Effect */
.logo::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  animation: shine 2s infinite;
}


/* Shine animation */
@keyframes shine {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}</pre></body></html>