/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --white-color: #cfe7ff;
  --white-color2: #fafcff;
  --nav-color: #cfe7ff;
  --primary-color: #cfe7ff;
  --section-bg-color: #4f72ac;
  --dark-color: #a1d2fc;
  --grey-color: #cfe7ff;
  --dark-grey-color: #999999;
  --text-secondary-white-color: rgba(255, 255, 255, 0.98);
  --title-color: #f04852;
  --p-color: #fffefd;
  --pink-color: #f4586e;
  --blue-color: #25adee;

  --body-font-family: 'Noto Sans JP', sans-serif;

  --h1-font-size: 72px;
  --h2-font-size: 42px;
  --h3-font-size: 36px;
  --h4-font-size: 32px;
  --h5-font-size: 24px;
  --h6-font-size: 22px;
  --p-font-size: 16px;
  --copyright-text-font-size: 12px;
  --custom-link-font-size: 12px;

  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-bold: 700;
  --font-weight-black: 900;
}

html {
  height: 100%;
}

body {
  height: 100%;
  background: var(--white-color);
  font-family: var(--body-font-family);
  position: relative;

  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

.semi-transparent {
  opacity: 0.4;
}

.round-section {
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
  background-color: var(--white-color2);
  color: var(--section-bg-color);
  max-width: 1250px;
  width: 90%;
  margin: 0 auto;
}

.round-section2 {
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
  background-color: var(--white-color2);
  color: var(--section-bg-color);
  width: 90%;
  margin: 0 auto;
}

.sub-cat {
  max-width: 750px;
  margin: 10px auto;
}

.form-container {
  max-width: 400px;
  margin: 10px auto;
  padding: 20px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.big-form-container {
  max-width: 800px;
  margin: 10px auto;
  padding: 20px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.orders-container {
  max-width: 800px;
  margin: 10px auto;
  padding: 20px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.round-item {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: var(--white-color2);
  width: 250px;
  height: 300px;
  color: var(--section-bg-color);
  width: 90%;
  margin: 0 auto;
  text-align: center;
  box-shadow: -2px 3px 3px -2px rgba(0, 0, 200, 0.2);
}

.product-image {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  padding: 10px;
  margin-top: 5px;
  height: 200px;
  max-width: 200px;
  width: auto;
  box-shadow: -2px 3px 3px -2px rgba(0, 0, 200, 0.2);
  border: 1px solid #55555522;
  object-fit: contain;
}

.product-wrapper {
  position: relative;
  display: inline-block;
}

.product-image.out-of-stock {
  opacity: 0.6;
  filter: grayscale(20%);
}

.out-stock-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 130px;
  height: 130px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: 7px solid #d32f2f;
  color: #d32f2f;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.1;
  pointer-events: none;
}

.product-font {
  font-size: 1.2rem;
  color: var(--section-bg-color)
}

.att-card {
  position: relative;
  width: 6vw;
  height: 16vh;
  min-width: 110px;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 0px;
}

.att-img {
  max-width: 100%;
  max-height: 70%;
  object-fit: contain;
}

.att-text {
  width: 100%;
  font-size: 0.8rem;
  line-height: 1.2;
  text-align: center;

  /* Natural wrapping */
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;

  /* Cap at 2 lines */
  max-height: calc(1.2em * 2);
  overflow: hidden;
  margin-bottom: 6px;
  margin-left: 6px;
  margin-right: 6px;
}

/* 🔹 When cards get narrow, allow 3 lines */
@media (max-width: 768px) {
  .att-text {
    -webkit-line-clamp: 2;
  }
}

.att-card.out-of-stock .att-img {
  opacity: 0.6;
  filter: grayscale(20%);
}

/* Red circle badge */
.att-card.out-of-stock::after {
  content: "OUT OF STOCK";
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: 3px solid #d32f2f;
  color: #d32f2f;
  font-size: 10px;
  font-weight: bold;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.1;
  pointer-events: none;
}

.normal {
  width: 100%;
  text-align: center;
  padding: 0.25rem 0;
  font-weight: bold;
  font-size: 0.9rem;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
  z-index: 1;
}

.featured {
  width: 100%;
  background-color: var(--blue-color);
  color: white;
  text-align: center;
  padding: 0.25rem 0;
  font-weight: bold;
  font-size: 0.9rem;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
  z-index: 1;
  box-shadow: -2px 3px 3px -2px rgba(0, 0, 200, 0.2);
}

.out-of-stock {
  width: 100%;
  background-color: lightgray;
  color: white;
  text-align: center;
  padding: 0.25rem 0;
  font-weight: bold;
  font-size: 0.9rem;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
  z-index: 1;
  box-shadow: -2px 3px 3px -2px rgba(0, 0, 0, 0.2);
}

.new {
  width: 100%;
  background-color: var(--title-color);
  color: white;
  text-align: center;
  padding: 0.25rem 0;
  font-weight: bold;
  font-size: 0.9rem;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
  z-index: 1;
  box-shadow: -2px 3px 3px -2px rgba(0, 0, 0, 0.2);
}

.sale {
  position: relative;
  left: 20px;
  top: 20px;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  width: 62px;
  height: 27px;
  background-color: var(--pink-color);
  color: white;
  text-align: center;
  font-weight: normal;
  font-size: 1.1rem;
  z-index: 1;
  box-shadow: 0 0 1px 1px rgba(255, 255, 255, 0.9);
}

.sale-font1 {
  text-decoration: line-through;
}

.sale-font2 {
  color: var(--title-color)
}

.price-strike {
  position: relative;
  display: inline-block;
  color: #6c757d;
  /* Bootstrap's text-muted color */
}

.price-strike::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  border-top: 2px solid #ff5555bb;
  /* Thicker and visible line */
  transform: translateY(-50%);
}

.video-wrapper {
  width: 100%;
  height: calc(100% - 60px);
  overflow: hidden;
  position: relative;
}

h2,
h3,
h4,
h5,
h6 {
  color: var(--section-bg-color);
  line-height: inherit;
}

.halt {
  color: var(--white-color);
  line-height: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-bold);
}

h1,
h2 {
  font-weight: var(--font-weight-black);
}

h1 {
  font-size: var(--h1-font-size);
  line-height: normal;
}

h2 {
  font-size: var(--h2-font-size);
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
}

h6 {
  font-size: var(--h6-font-size);
}

p {
  color: var(--section-bg-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
  letter-spacing: 0.5px;
}

.p2 {
  color: var(--white-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
  letter-spacing: 0.5px;
}

.p2a {
  color: var(--white-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
  text-decoration: underline;
  letter-spacing: 0.5px;
}

ul {
  display: table;
  list-style-type: circle;
  counter-reset: foo;
}

ul.a {
  list-style-type: circle;
}

.cli::before {
  display: table-cell;
  content: "▪";
}

.clalt {
  color: var(--white-color);
}

li {
  color: var(--nav-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
  letter-spacing: 0.5px;
  display: table-row;
}

.text-secondary-white-color {
  color: var(--text-secondary-white-color);
}

a,
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

.btn-custom-red {
  background-color: var(--title-color);
  color: white;
  font-weight: bold;
  border: none;
  width: 100%;
}

.btn-custom-red:hover {
  background-color: var(--title-color);
  color: var(--dark-color)
}

.btn-custom-blue {
  background-color: var(--section-bg-color);
  color: white;
  font-weight: bold;
  border: none;
  width: 100%;
}

.btn-custom-blue:hover {
  background-color: var(--section-bg-color);
  color: var(--dark-color)
}

.btn-custom-grey {
  background-color: var(--dark-grey-color);
  color: white;
  font-weight: bold;
  border: none;
  width: 100%;
}

.btn-custom-grey:hover {
  background-color: var(--dark-grey-color);
  color: var(--dark-color)
}


a {
  color: var(--section-bg-color);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

::selection {
  background: var(--dark-color);
  color: var(--white-color);
}

.custom-underline {
  border-bottom: 2px solid var(--white-color);
  color: var(--white-color);
  padding-bottom: 4px;
}

.videoWrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  height: 0;
  z-index: -100;
}

.custom-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.overlay {
  background: linear-gradient(to top, #000, transparent 90%);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

/*---------------------------------------
  CUSTOM LINK               
-----------------------------------------*/
.custom-links {
  max-width: 230px;
}

.custom-link {
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: inline-block;
  transition: all .3s cubic-bezier(.645, .045, .355, 1);
}

.custom-link::after {
  content: "";
  width: 0;
  height: 2px;
  bottom: 0;
  position: absolute;
  left: auto;
  right: 0;
  z-index: -1;
  transition: width .6s cubic-bezier(.25, .8, .25, 1) 0s;
  background: currentColor;
}

.custom-link:hover::after {
  width: 100%;
  left: 0;
  right: auto;
}

.custom-link:hover,
.custom-link:hover::after {
  color: var(--white-color);
}

b,
strong {
  font-weight: var(--font-weight-bold);
}

/*---------------------------------------
  NAVIGATION               
-----------------------------------------*/

.navbar {
  z-index: 9;
  right: 0;
  left: 0;
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: var(--nav-color);
}

.navbar-brand {
  color: var(--white-color);
  font-size: 24px;
  font-weight: var(--font-weight-bold);
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding-right: 15px;
  padding-left: 15px;
}

.navbar-nav .nav-link::after {
  content: "\f140";
  font-family: bootstrap-icons;
  display: inline-block;
  margin-left: 10px;
  color: var(--primary-color);
  opacity: 0;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  -moz-transition: opacity 0.3s, -moz-transform 0.3s;
  transition: opacity 0.3s, transform 0.3s;
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  transform: translateY(10px);
}

.navbar-nav .nav-link:hover::after {
  opacity: 1;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  transform: translateY(0px);
}

.navbar-nav .nav-link {
  color: var(--blue-color);
  font-size: 18px;
  font-weight: var(--font-weight-bold);
  position: relative;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-item.active .nav-link::after {
  color: var(--pink-color);
  opacity: 1;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  transform: translateY(0px);
}

.navbar-nav .nav-item.active .nav-link,
.nav-link:focus,
.nav-link:hover {
  color: var(--pink-color);
}

.nav-link:focus {
  color: var(--p-color);
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--dark-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--dark-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon:before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon:after {
  top: 8px;
}

/*---------------------------------------
  HERO              
-----------------------------------------*/
.hero {
  position: relative;
  overflow: hidden;
}

@media screen and (min-width: 992px) {
  .hero {
    height: 100vh;
  }

  .custom-video,
  .news-detail-image {
    object-fit: cover;
    width: 100vw;
    height: 100vh;
  }

  .sticky-wrapper {
    position: relative;
    bottom: 76px;
  }
}

.heroText {
  position: absolute;
  z-index: 9;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85%;
  text-align: center;
}

/*---------------------------------------
  ABOUT & TEAM MEMBERS               
-----------------------------------------*/
.about-image,
.team-image {
  width: 100%;
  height: 100%;
  max-height: 635px;
  min-height: 475px;
  object-fit: cover;
}

.team-thumb {
  background: var(--white-color);
  position: absolute;
  bottom: 0;
  right: 0;
  width: 65%;
  padding: 22px 32px 32px 32px;
}

.carousel-control-next,
.carousel-control-prev {
  top: 2.5rem;
  bottom: auto;
}

.carousel-control-prev {
  right: 4rem;
  left: auto;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
  background-color: var(--dark-color);
  background-size: 50% 50%;
  border-radius: 100px;
  width: 3rem;
  height: 3rem;
}

/*---------------------------------------
  PORTFOLIO               
-----------------------------------------*/
.portfolio-thumb {
  position: relative;
  overflow: hidden;
}

.portfolio-info {
  margin: 20px;
}

/*---------------------------------------
  NEWS & EVENTS               
-----------------------------------------*/

.news,
.related-news {
  background: var(--section-bg-color);
}

.news-thumb {
  position: relative;
}

.news-category {
  background: var(--white-color);
  position: absolute;
  z-index: 9;
  top: 0;
  left: 0;
  padding: 4px 12px;
  display: inline-block;
}

.news-text-info {
  margin: 0 20px;
}

.news-title {
  margin-top: 15px;
  margin-bottom: 15px;
}

.news-title-link {
  color: var(--title-color);
  display: inline-block;
}

.news-title-link:hover {
  color: var(--dark-color);
}

.portfolio-image,
.news-image {
  display: block;
  transition: transform 0.6s ease-out;
}

.news-image-hover {
  display: inline-block;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all .3s cubic-bezier(.645, .045, .355, 1);
  padding-bottom: 4px;
  height: 100%;
}

.news-image-hover::after {
  content: "";
  width: 0;
  height: 4px;
  bottom: 0;
  position: absolute;
  left: auto;
  right: 0;
  z-index: -1;
  transition: width .6s cubic-bezier(.25, .8, .25, 1) 0s;
  background: #198754;
}

.news-image-hover-warning::after {
  background: #ffc107;
}

.news-image-hover-primary::after {
  background: #0d6efd;
}

.news-image-hover-success::after {
  background: #198754;
}

.news-image-hover:hover::after {
  width: 100%;
  left: 0;
  right: auto;
  z-index: 9;
}

.image-popup:hover .portfolio-image,
.news-image-hover:hover .news-image {
  transform: scale(1.02);
}

.news-two-column {
  min-height: 199px;
  margin-bottom: 16px;
}

.news-two-column .news-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.social-share-link,
.social-share-link+span {
  color: rgba(255, 255, 255, 0.65);
}

.text-muted {
  color: #6c757d !important;
  text-decoration: underline;
}

.text-muted:hover {
  color: #000000 !important;
}

/*---------------------------------------
  SECTION               
-----------------------------------------*/
.section-padding {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

/*---------------------------------------
  CONTACT              
-----------------------------------------*/
.contact-info {
  padding: 40px;
}

.contact-form .form-control {
  border-radius: 0;
  font-weight: var(--font-weight-normal);
  padding-top: 12px;
  padding-bottom: 12px;
}

.contact-form button[type='submit'] {
  background: var(--dark-color);
  border: none;
  border-radius: 100px;
  color: var(--white-color);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  padding: 16px;
  transition: all 0.6s ease-out;
}

.contact-form button[type='submit']:hover {
  background: var(--primary-color);
}

.form-label {
  color: var(--p-color);
  font-weight: var(--font-weight-bold);
}

.map-iframe {
  display: block;
  filter: grayscale(100);
}

/*---------------------------------------
  SITE FOOTER               
-----------------------------------------*/
.site-footer {
  background: var(--pink-color);
  padding-top: 0.5rem;
  padding-bottom: 0.0rem;
}

.site-footer .custom-link {
  color: rgba(255, 255, 255, 0.65);
  font-size: var(--p-font-size);
}

.site-footer .custom-link:hover,
.site-footer .social-icon-link:hover {
  color: var(--white-color);
}

.copyright-text {
  color: rgba(255, 255, 255, 0.45);
  font-size: var(--copyright-text-font-size);
}

/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon li {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  color: rgba(255, 255, 255, 0.45);
  font-size: 1rem;
  display: inline-block;
  vertical-align: top;
  margin-top: 4px;
  margin-bottom: 4px;
  margin-right: 15px;
}

.social-icon-link:hover {
  color: var(--primary-color);
}

/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (min-width: 1600px) {
  .news-two-column {
    min-height: 232.5px;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .navbar {
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .section-padding {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .team-thumb {
    left: 0;
    width: auto;
  }

  .news-two-column {
    height: auto !important;
    min-height: inherit;
  }

  .news .col-12 .news-two-column:first-child {
    margin-bottom: 38px;
  }
}

@media screen and (max-width: 767px) {
  .news-detail-title {
    font-size: 36px;
  }
}

@media screen and (max-width: 360px) {
  h1 {
    font-size: 32px;
  }

  .heroText p {
    font-size: 14px;
  }
}

@media screen and (max-width: 359px) {
  .news-detail-title {
    font-size: 22px;
  }
}

.rounded-img {
  border-radius: 30px;
}

/*
Additional
/*/

.info-card {
  background-color: #f9fafc;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.icon-box {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e8edfa;
  border-radius: 8px;
  color: #0d2b73;
  margin-right: 10px;
}

.edit-icon {
  position: absolute;
  bottom: 10px;
  right: 10px;
  color: #0d2b73;
}



.cart-item {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  padding: 10px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1000px;
  width: 90%;
  margin: 10px auto;
}

.cart-item img {
  width: 60px;
  height: 60px;
}

.item-details h6 {
  margin: 0;
  font-weight: 500;
}

.item-details p {
  margin: 0;
  font-weight: 700;
  color: #2F2F3F;
  font-size: 1.2rem;
}

.quantity-control {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 8px;
  overflow: hidden;
}

.quantity-control button {
  border: none;
  background: none;
  width: 35px;
  font-size: 1.2rem;
  color: #001F3F;
}

.quantity-control input {
  width: 45px;
  border: none;
  text-align: center;
  font-weight: 600;
  font-size: 1.1rem;
  outline: none;
}

.quantity-control span {
  display: inline-block;
  width: 30px;
  text-align: center;
  font-weight: 600;
  font-size: 1.1rem;
}

.delete-btn {
  background: none;
  border: none;
  color: #ff3b3b;
  font-size: 1.3rem;
}

.cart-summary {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  padding: 20px 25px;
  max-width: 1000px;
  width: 90%;
  margin: 15px auto;
  font-family: "Inter", sans-serif;
}

.cart-summary h6 {
  font-weight: 600;
  color: #2F2F3F;
  margin: 0;
}

.cart-summary .amount {
  font-weight: 700;
  color: #2F2F3F;
  font-size: 1.2rem;
  width: 100px;
  display: inline-block;
  text-align: right;
}

.cart-summary .amount-wide {
  font-weight: 700;
  color: #2F2F3F;
  font-size: 1.2rem;
  display: inline-block;
  text-align: right;
}

.cart-summary .text-muted {
  font-size: 0.9rem;
}

.divider {
  height: 1px;
  background-color: #eee;
  margin: 10px 0 15px 0;
}

.free-shipping {
  color: #001F3F;
  font-weight: 500;
  text-align: center;
  margin-top: 10px;
}

.error-text {
  color: #FF5433;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  margin-top: 10px;
}

/* Disable input number arrows */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

.amount {
  font-weight: 700;
  color: #2F2F3F;
  font-size: 1.2rem;
  width: 100px;
  display: inline-block;
  text-align: right;
}

.plus-tax {
  font-weight: 500;
  color: var(--dark-color);
  font-size: 12px;
}

.profile-address-card {
  background-color: #f9fafc;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  height: 100%;
  position: relative;
}

.address-selectable {
  cursor: pointer
}

.address-card {
  border: 2px solid #eee;
  padding: 10px;
  border-radius: 8px;
  background: #fff;
}

.address-selectable.selected .address-card {
  border: 2px solid #0d6efd;
  box-shadow: 0 4px 12px rgba(13, 110, 253, 0.12)
}

.payment-method-selectable {
  cursor: pointer
}

.payment-method-card {
  border: 2px solid #eee;
  padding: 10px;
  border-radius: 8px;
  background: #fff
}

.payment-method-selectable.selected .payment-method-card {
  border: 2px solid #0d6efd;
  box-shadow: 0 4px 12px rgba(13, 110, 253, 0.12)
}

.discount-selectable {
  cursor: pointer
}

.discount-card {
  border: 2px solid #eee;
  padding: 10px;
  border-radius: 8px;
  background: #fff;
}

.discount-selectable.selected .discount-card {
  border: 2px solid #0d6efd;
  box-shadow: 0 4px 12px rgba(13, 110, 253, 0.12)
}

.order-container {
  background: #f9fafc;
  border-radius: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  padding: 5px 8px;
  max-width: 800px;
  margin: 10px auto;
}

.order-item {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  padding: 5px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 700px;
  margin: 10px auto;
}

.order-item img {
  width: 60px;
  height: 60px;
}

.count {
  font-weight: 700;
  color: #2F2F3F;
  font-size: 1.2rem;
  text-align: right;
}

.status-pill {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
}

.status-pending {
  background: #ffe9a5;
  color: #8a6d00;
}

.status-shipped {
  background: #d7d7ff;
  color: #2f2f7a;
}

.status-completed {
  background: #d7ffd7;
  color: #2f7a2f;
}

.status-canceled {
  background: #ffd3d3;
  color: #9e1d1d;
}

.item-img {
  width: 45px;
  height: 45px;
  object-fit: contain;
}

.carousel-item img {
  cursor: pointer;
}
.modal-img {
  max-width: 90vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
}

.edit-icon {
  position: absolute;
  bottom: 10px;
  right: 10px;
  color: #0d2b73;
  cursor: pointer;
}
.del-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #ff0000;
  cursor: pointer;
}
.empty-btn {
  background: none;
  border: none;
  font-size: 1.0rem;
}


#topAlert {
  top: 65px; /* height of navbar */
  z-index: 1040;
  animation: slideDown 0.5s ease forwards;
  background: var(--pink-color);
}

.alert-text {
  color: rgba(255, 255, 255, 0.75);
}

/* Optional smooth entrance */
@keyframes slideDown {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.discount {
  display: inline-block;
  padding: 2px 4px;
  border: 1px dashed var(--pink-color);
  color: var(--pink-color);
  font-weight: bold;
  font-size: 1.0rem;
  border-radius: 4px;
  background: #fff5f5;
  letter-spacing: 1px;
}

.discount-note {
  color: var(--pink-color);
  font-size: 1.0rem;
}