/* reset css */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* global css */
body {
  font-family: "Sedan SC", serif;
  font-weight: 400;
  font-style: normal;
}

.container {
  max-width: 1200px;
}

.bg-main {
  background-color: rgb(44, 51, 47);
}
.section {
  padding: 60px 0;
}

.zoom {
  transition: all 0.2s; /* Animation */
}
.zoom:hover {
  cursor: pointer;
  transform: scale(1.2);
}

/* card styles */
.card {
  aspect-ratio: 1/1;
}
.card:hover {
  cursor: pointer;
}
.card-box {
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
}
.sold {
  text-transform: uppercase;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background-color: red;
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  font-weight: 500;
}

.card-box p {
  z-index: 10;
  color: white;
  font-size: 56px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.card:hover .bi {
  cursor: pointer;
  transform: scaleX(1.3);
  transition: all 0.3s;
}
.card:hover img {
  cursor: pointer;
  transform: scale(1.05);
  transition: all 0.3s;
}
.card-body h3 {
  font-size: 18px;
}
.card-body a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  color: #000000;
}
.card-body a:hover {
  text-decoration: underline;
}

.body-no-scroll {
  overflow: hidden; /* Prevent scrolling */
  position: fixed; /* Optional: to ensure the layout doesn't shift */
  width: 100%; /* Maintain the full width */
}

/* about us page*/
.box-about {
  padding: 36px 200px;
}
.box-about h2 {
  font-size: 52px;
}
.box-description > p {
  margin-top: 24px;
  line-height: 34px;
  letter-spacing: 1px;
  font-size: 18px;
  color: #252525bf;
}
.box-description > p > a {
  line-height: 34px;
  letter-spacing: 1px;
  font-size: 18px;
  color: #252525bf;
  font-weight: 600;
}

/* shipping page*/
.box-shipping {
  padding: 36px 200px;
}
.box-shipping h2 {
  text-align: center;
  font-size: 52px;
  margin-bottom: 24px;
}
.box-description > p {
  margin-top: 16px;
  line-height: 34px;
  letter-spacing: 1px;
  font-size: 18px;
  color: #252525bf;
}
.box-description > p > a {
  line-height: 34px;
  letter-spacing: 1px;
  font-size: 18px;
  color: #252525bf;
  font-weight: 600;
}
.des-small {
  margin-top: 56px;
  line-height: 24px;
  font-size: 14px;
  color: #252525bf;
}

/* table */
.box-table {
  margin-top: 32px;
}
.table-bordered td,
.table-bordered th {
  padding: 14px 12px !important;
  border: 1px solid rgb(80, 86, 85, 0.2) !important; /* Ensuring border is applied */
  font-size: 16px;
  color: #252525bf;
}

/* contact page */
/* shipping page*/
.box-contact {
  max-width: auto;
  padding: 36px 200px;
}
.box-contact h2 {
  font-size: 52px;
  margin-bottom: 24px;
}
.contact-form {
  margin: 32px 0;
}
@media screen and (max-width: 768px){ 
  .bg-main {
    background-color: #fff !important;
  }
}
@media (max-width: 576px) {
  .box-contact,
  .box-about,
  .box-shipping {
    padding: 24px 36px;
  }
  .box-table {
    overflow-x: scroll;
  }

  .toggle-icon {
    color: #000000 !important;
  }
  .section {
    padding: 24px 0;
  }
}
