@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Cabin:wght@400;500;700&family=Noto+Sans+JP:wght@400;500;700&display=swap");
:root {
  font-size: clamp(0.85rem, 0.875rem + 0.15vw, 1rem);
  --vedett-blue: #33C9FF;
  --vedett-orange: #F5941D;
  --vedett-yellow: #FFD700;
  --vedett-red: #EC1C24;
  --vedett-darkblue: #006898;
  --text-primary: #333333;
  --text-secondary: #666666;
  --text-light: #cccccc;
  --bg-white: #FFFFFF;
  --bg-light: #C7E9FA;
  --font-family-base: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-family-english: 'Cabin', 'Noto Sans JP', sans-serif;
  --font-size-base: 1rem;
  --font-size-sm: 0.875rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.5rem;
  --font-size-2xl: 2rem;
  --font-size-3xl: 2.5rem;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
  --spacing-sm: 1em;
  --spacing-md: 1.5em;
  --spacing-lg: 2em;
  --spacing-xl: 3em;
  --spacing-2xl: 5em;
  --spacing-3xl: 15svh;
  --border-radius-base: 0.5rem;
  --shadow-base: 0 0.25rem 0.5rem rgb(0 0 0 / 0.12);
  --transition-base: all 0.3s ease;
}

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

html {
  font-size: var(--font-size-base);
}

body {
  font-family: var(--font-family-base);
  font-size: var(--font-size-base);
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--bg-light);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
picture {
  display: block;
  max-inline-size: 100%;
  block-size: auto;
}

a {
  color: var(--text-primary);
  text-decoration: none;
  transition: var(--transition-base);
}
a:hover {
  color: var(--vedett-orange);
  text-decoration: none;
}
a:focus-visible {
  outline: 2px solid var(--vedett-orange);
  outline-offset: 0.25em;
}

a.btn-link {
  text-decoration: underline;
  color: var(--vedett-blue);
}

h1, h2, h3, h4, h5, h6 {
  word-break: keep-all;
  word-break: auto-phrase;
  overflow-wrap: anywhere;
  line-break: loose;
  line-height: var(--line-height-tight);
  letter-spacing: 0.05em;
  text-spacing-trim: trim-auto;
  text-autospace: no-autospace;
}

.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.5em;
  padding-inline: 1em;
}

.navbar-brand {
  display: inline-block;
  padding-block: 0.3125em;
  margin-inline-end: 1em;
  font-size: 1.25em;
  text-decoration: none;
  white-space: nowrap;
}

.navbar-nav {
  display: flex;
  flex-direction: column;
  padding-inline-start: 0;
  margin-block-end: 0;
  list-style: none;
  width: fit-content;
  text-align: center;
}

.nav-item {
  list-style: none;
}

.nav-link {
  display: block;
  padding-block: 0.5em;
  padding-inline: 1em;
  text-decoration: none;
  transition: color 0.15s ease-in-out;
}

.navbar-toggler {
  padding-block: 0.25em;
  padding-inline: 0.75em;
  font-size: 1.25em;
  line-height: 1;
  background-color: transparent;
  border: none;
  transition: box-shadow 0.15s ease-in-out;
}
.navbar-toggler:focus-visible {
  outline: 2px solid var(--vedett-blue);
  outline-offset: 0.25em;
}

.navbar-toggler-icon {
  display: inline-block;
  inline-size: 1.5em;
  block-size: 1.5em;
  vertical-align: middle;
  background-image: none;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  position: relative;
}
.navbar-toggler-icon::before, .navbar-toggler-icon::after {
  content: "";
  position: absolute;
  inline-size: 100%;
  block-size: 2px;
  background-color: rgba(0, 0, 0, 0.55);
  inset-inline-start: 0;
  transition: all 0.3s ease;
}
.navbar-toggler-icon::before {
  inset-block-start: 0.3em;
}
.navbar-toggler-icon::after {
  inset-block-end: 0.3em;
}
.navbar-toggler-icon span {
  position: absolute;
  inset-inline-start: 0;
  inset-block-start: 50%;
  transform: translateY(-50%);
  inline-size: 100%;
  block-size: 2px;
  background-color: rgba(0, 0, 0, 0.55);
  transition: all 0.3s ease;
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon::before {
  inset-block-start: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.navbar-toggler:not(.collapsed) .navbar-toggler-icon::after {
  inset-block-end: auto;
  inset-block-start: 50%;
  transform: translateY(-50%) rotate(-45deg);
}
.navbar-toggler:not(.collapsed) .navbar-toggler-icon span {
  opacity: 0;
}

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}

.collapse:not(.show) {
  display: none;
}

.navbar-light .navbar-brand {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .nav-link {
  color: rgba(0, 0, 0, 0.55);
}
.navbar-light .nav-link:hover, .navbar-light .nav-link:focus {
  color: rgba(0, 0, 0, 0.7);
}

#mainNav {
  padding: 0;
  justify-content: center;
  background-color: var(--vedett-blue);
  transition: opacity 0.3s ease;
  opacity: 0;
  pointer-events: none;
}
#mainNav.nav-visible {
  opacity: 1;
  pointer-events: auto;
  box-shadow: var(--shadow-base);
}
#mainNav .container-fluid {
  justify-content: center;
}
#mainNav .navbar-brand {
  transition: transform 0.3s ease;
  transform-origin: center center;
  inline-size: fit-content;
  margin-inline: auto;
  padding-inline-start: 1.5em;
}
#mainNav .navbar-brand img {
  block-size: 40px;
  inline-size: auto;
  aspect-ratio: 640/156;
}
#mainNav.nav-visible .navbar-brand {
  transform: scale(0.7);
}
@media (width < 992px) {
  #mainNav.nav-visible .navbar-brand {
    padding-inline-start: 5em;
  }
}
#mainNav .desktop-menu {
  margin-inline: auto;
  max-inline-size: 15.625rem;
}
#mainNav .desktop-menu .nav-link {
  font-size: 1em;
  font-weight: var(--font-weight-medium);
  color: var(--text-primary);
  padding: 0.75em;
  inline-size: 100%;
  text-align: center;
}
#mainNav .desktop-menu .nav-link:hover {
  color: var(--vedett-orange);
}
#mainNav .hamburger-menu {
  display: none;
  margin-inline-start: var(--spacing-md);
  inline-size: fit-content;
  margin-inline: auto;
}
#mainNav .navbar-collapse {
  display: none;
}
#mainNav .navbar-collapse.show {
  display: block;
}
@media (width < 992px) {
  #mainNav:has(#navbarNav.show) .flex-lg-column {
    flex-direction: column;
  }
}
@media (width < 992px) {
  #mainNav:has(#navbarNav.show) .navbar-brand {
    padding-inline-start: 1em;
  }
}
.page-designtools #mainNav {
  opacity: 1;
  pointer-events: auto;
  box-shadow: var(--shadow-base);
}
.page-designtools #mainNav .navbar-brand {
  transform: scale(0.7);
}

.first-view-section {
  min-block-size: 100svh;
  display: flex;
  align-items: flex-start;
  padding-block: var(--spacing-xl);
  position: relative;
  background-image: url("/assets/images/vedett/back_image.webp"), linear-gradient(90deg, var(--vedett-blue) 0%, var(--vedett-blue) 50%, var(--vedett-orange) 50%, var(--vedett-orange) 100%);
  background-position: center top, 0 0;
  background-repeat: no-repeat, no-repeat;
  background-size: auto 113%, 100% 100%;
  isolation: isolate;
}
@media (width < 992px) {
  .first-view-section {
    padding-block-start: 0;
    padding-block-end: var(--spacing-xl);
    background-size: auto 98%, 100% 85%;
  }
}
.first-view-section .inner {
  inline-size: 100%;
  max-inline-size: 80vw;
  padding-inline: var(--spacing-lg);
  margin-inline: auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: var(--spacing-lg);
}
@media (width < 992px) {
  .first-view-section .inner {
    max-inline-size: 100%;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    min-block-size: 80vh;
    gap: 0;
  }
}
.first-view-section .bottle-left,
.first-view-section .bottle-right {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
}
.first-view-section .bottle-left img,
.first-view-section .bottle-right img {
  inline-size: auto;
  block-size: 100%;
  max-block-size: 80svh;
}
@media (width < 992px) {
  .first-view-section .bottle-left img,
  .first-view-section .bottle-right img {
    max-inline-size: 35vw;
    max-block-size: none;
  }
}
@media (width < 992px) {
  .first-view-section .bottle-left,
  .first-view-section .bottle-right {
    grid-row: 1/2;
    align-items: flex-end;
    z-index: 1;
    inline-size: fit-content;
  }
}
.first-view-section .bottle-left {
  transform: translate(3vw, 10vh);
}
.first-view-section .bottle-left::after {
  content: "";
  background-image: url("/assets/images/vedett/white-bear.webp");
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  aspect-ratio: 188/426;
  width: 33%;
  height: auto;
  position: absolute;
  bottom: 0;
  left: -6%;
}
@media (width < 992px) {
  .first-view-section .bottle-left {
    grid-column: 1/2;
    justify-content: flex-start;
    transform: translate(1vw, 23vh);
  }
  .first-view-section .bottle-left:after {
    width: 50%;
    bottom: -25%;
    left: 0;
  }
}
.first-view-section .bottle-right {
  transform: translate(-3vw, 10vh);
}
.first-view-section .bottle-right::after {
  content: "";
  background-image: url("/assets/images/vedett/white-seiuchi.webp");
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  aspect-ratio: 238/166;
  width: 65%;
  height: auto;
  position: absolute;
  bottom: -5%;
  right: -6%;
}
@media (width < 992px) {
  .first-view-section .bottle-right {
    grid-column: 2/3;
    transform: translate(15vw, 23vh);
  }
  .first-view-section .bottle-right:after {
    width: 100%;
    bottom: -15%;
    right: 0;
  }
}
.first-view-section .center-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (width < 992px) {
  .first-view-section .center-content {
    grid-column: 1/3;
    grid-row: 1/2;
    align-items: center;
    z-index: 10;
    padding: 0;
  }
}
.first-view-section .center-content .vedett-logo-large {
  text-align: center;
  transform: translateX(1rem);
}
@media (width < 992px) {
  .first-view-section .center-content .vedett-logo-large {
    transform: scale(0.7) translateX(1rem);
  }
}
.first-view-section .center-content .vedett-logo-large a {
  display: inline-block;
  inline-size: fit-content;
  margin-inline: auto;
}
.first-view-section .center-content .vedett-logo-large img {
  inline-size: 100%;
  block-size: auto;
}
@media (width < 768px) {
  .first-view-section .center-content .vedett-logo-large img {
    inline-size: 70%;
    margin-inline: auto;
  }
}
.first-view-section .center-content .center-nav {
  margin-block-start: var(--spacing-md);
}
.first-view-section .center-content .center-nav .center-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}
.first-view-section .center-content .center-nav .center-nav-link {
  display: inline-block;
  font-family: var(--font-family-english);
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-medium);
  color: var(--text-primary);
  text-decoration: none;
  padding: 0.75em;
  transition: var(--transition-base);
  inline-size: 100%;
}
.first-view-section .center-content .center-nav .center-nav-link:hover {
  color: var(--vedett-orange);
  transform: scale(1.1);
}
@media (width < 576px) {
  .first-view-section .center-content .center-nav .center-nav-link {
    padding: 0.15rem;
  }
}
.first-view-section .center-content .original-label {
  max-inline-size: 25rem;
  margin-block-start: 7vh;
  margin-inline: auto;
  position: relative;
  z-index: 50;
}
@media (width < 1380px) {
  .first-view-section .center-content .original-label {
    max-inline-size: 18.75rem;
  }
}
@media (width < 992px) {
  .first-view-section .center-content .original-label {
    max-inline-size: 15.625rem;
    margin-block-start: 13svh;
  }
}
.first-view-section .center-content .original-label a {
  inline-size: 100%;
  block-size: 100%;
  display: flex;
  margin-inline: auto;
}
.first-view-section .center-content .original-label a:hover {
  transform: translateY(-0.5em);
  box-shadow: var(--shadow-base);
  opacity: 0.95;
}
.first-view-section::after {
  content: "";
  position: absolute;
  inset-block-end: 0;
  inset-inline-start: 0;
  inline-size: 100%;
  block-size: 50%;
  background: linear-gradient(180deg, transparent 30%, var(--bg-light) 100%);
  z-index: -1;
}

.first-view-section.second .inner {
  align-items: flex-end;
}
.first-view-section.second .center-content .original-label {
  max-inline-size: 31.25rem;
}
.first-view-section.second .bottle-left {
  transform: translate(3vw, 0);
}
.first-view-section.second .bottle-right {
  transform: translate(3vw, 0);
}

.section-title {
  font-family: var(--font-family-english);
  font-size: clamp(2.5rem, 2rem + 2vw, 3.75rem);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.1em;
  color: var(--text-primary);
  text-transform: uppercase;
}

.section-title + .section-subtitle {
  font-size: var(--font-size-lg);
  color: var(--bg-white);
  font-weight: 400;
  text-wrap: pretty;
}

.our-style-section {
  position: relative;
  background-color: var(--bg-light);
  padding-block: var(--spacing-3xl);
}
.our-style-section .section-title {
  margin-block-end: 0;
}
.our-style-section .section-title + .section-title {
  font-size: clamp(2rem, 1.5rem + 1.5vw, 3.125rem);
}
.our-style-section .style-description {
  font-size: 1em;
  line-height: 1.8;
}
@media (width < 992px) {
  .our-style-section .style-description > br {
    display: none;
    line-height: 1.5;
  }
}
.our-style-section .btn-wrapper {
  margin-block-start: var(--spacing-xl);
}

.story-section {
  background-color: var(--bg-light);
  padding-block: var(--spacing-xl);
}
.story-section .story-text {
  font-size: 1em;
  line-height: 1.8;
  margin-block-start: var(--spacing-lg);
  text-transform: uppercase;
  text-wrap: pretty;
}
.story-section .btn-wrapper {
  margin-block-start: var(--spacing-lg);
}

.beer-item {
  position: relative;
  padding: var(--spacing-md);
  block-size: 100%;
}
@media (width >= 992px) {
  .beer-item {
    display: flex;
    align-items: center;
  }
}
.beer-item[data-saletype] .beer-image::before {
  content: "";
  position: absolute;
  inset-block-start: 1rem;
  inset-inline-end: -0.5rem;
  inline-size: 3.2875rem;
  block-size: 3.2875rem;
  background-size: cover;
  background-position: center;
  z-index: 1;
}
@media (width >= 992px) {
  .beer-item[data-saletype] .beer-image::before {
    inset-inline-end: -0.5rem;
    inline-size: 4.6875rem;
    block-size: 4.6875rem;
  }
}
.beer-item[data-saletype] .beer-image::after {
  position: absolute;
  inset-block-start: 1rem;
  inset-inline-end: -0.5rem;
  inline-size: 3.2875rem;
  block-size: 3.2875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: var(--font-weight-bold);
  color: var(--bg-white);
  z-index: 2;
}
@media (width >= 992px) {
  .beer-item[data-saletype] .beer-image::after {
    inset-inline-end: -0.5rem;
    inline-size: 4.6875rem;
    block-size: 4.6875rem;
    font-size: var(--font-size-sm);
  }
}
.beer-item[data-saletype=limited] .beer-image::before {
  background-image: url("/assets/images/vedett/badge-limited.svg");
}
.beer-item[data-saletype=limited] .beer-image::after {
  content: "限定";
}
.beer-item[data-saletype=standard] .beer-image::before {
  background-image: url("/assets/images/vedett/badge-standard.svg");
}
.beer-item[data-saletype=standard] .beer-image::after {
  content: "定番";
}
.beer-item[data-saletype=regular] .beer-image::before {
  background-image: url("/assets/images/vedett/badge-regular.svg");
}
.beer-item[data-saletype=regular] .beer-image::after {
  content: "定期";
}
.beer-item .beer-image {
  aspect-ratio: 1/1;
  inline-size: 100%;
  max-inline-size: 24.0625rem;
  width: 50%;
  position: relative;
}
@media (width < 992px) {
  .beer-item .beer-image {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
.beer-item .beer-image img {
  display: block;
  margin-inline: auto;
  max-width: 100%;
  width: auto;
  height: 100%;
}
.beer-item .beer-name {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-regular);
  color: var(--text-primary);
  text-align: left;
  line-height: 1.75;
}
@media (width < 992px) {
  .beer-item .beer-name {
    line-height: 1.35;
    margin-block-start: 1em;
  }
}
.beer-item .btn-wrapper {
  display: flex;
  justify-content: flex-end;
  padding-right: 1rem;
}
@media (width < 992px) {
  .beer-item .beer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1rem, 3vw, 1.5rem);
  }
  .beer-item .beer-grid .beer-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
  }
}
@media (width < 768px) {
  .beer-item .beer-grid {
    grid-template-columns: 1fr;
    gap: clamp(1rem, 4vw, 1.5rem);
  }
}

.beer-section {
  background-color: var(--bg-light);
  padding-block: var(--spacing-3xl);
}
.beer-section .beer-item {
  transition: var(--transition-base);
  border: solid 1px var(--bg-white);
  align-items: center;
}
@media (width < 992px) {
  .beer-section .beer-item {
    padding: var(--spacing-sm);
  }
}
.beer-section .beer-item:focus-within {
  outline: 2px solid var(--vedett-blue);
  outline-offset: 0.25em;
}
.beer-section .beer-item[data-saletype] .beer-image::before {
  inset-block-start: -2rem;
  inset-inline-start: -1.5rem;
}
.beer-section .beer-item[data-saletype] .beer-image::after {
  inset-block-start: -2rem;
  inset-inline-start: -1.5rem;
}
.beer-section .beer-image img {
  max-height: 250px;
}

.blog-section {
  padding-block-end: var(--spacing-2xl);
}
@media (width < 768px) {
  .blog-section .bloglist {
    padding-inline: 0.5em;
  }
}
.blog-section .bloglist > .col-lg-4,
.blog-section .bloglist > .col-md-6,
.blog-section .bloglist > [class*=col-] {
  position: relative;
}
.blog-section .bloglist > .col-lg-4 .c-news-card__body,
.blog-section .bloglist > .col-md-6 .c-news-card__body,
.blog-section .bloglist > [class*=col-] .c-news-card__body {
  background-color: var(--bg-white);
  border: 1px solid #e0e0e0;
  overflow: hidden;
  transition: var(--transition-base);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.blog-section .bloglist > .col-lg-4 .c-news-card__body::before,
.blog-section .bloglist > .col-md-6 .c-news-card__body::before,
.blog-section .bloglist > [class*=col-] .c-news-card__body::before {
  content: attr(data-category-label);
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  padding-block: 0.5em;
  padding-inline: 1em;
  font-size: var(--font-size-sm);
  letter-spacing: 0.05em;
  border-radius: 0;
  z-index: 2;
  line-height: 1;
  font-weight: var(--font-weight-medium);
  color: white;
}
.blog-section .bloglist > .col-lg-4 .c-news-card__body:not([data-category-label])::before,
.blog-section .bloglist > .col-md-6 .c-news-card__body:not([data-category-label])::before,
.blog-section .bloglist > [class*=col-] .c-news-card__body:not([data-category-label])::before {
  display: none;
}
.blog-section .bloglist > .col-lg-4 .c-news-card__body .c-news-card_inner,
.blog-section .bloglist > .col-md-6 .c-news-card__body .c-news-card_inner,
.blog-section .bloglist > [class*=col-] .c-news-card__body .c-news-card_inner {
  padding-block: var(--spacing-md);
  padding-inline: var(--spacing-md);
}
.blog-section .bloglist > .col-lg-4 .c-news-card__body .column-image,
.blog-section .bloglist > .col-md-6 .c-news-card__body .column-image,
.blog-section .bloglist > [class*=col-] .c-news-card__body .column-image {
  aspect-ratio: 4/3;
  object-fit: cover;
  inline-size: 100%;
  display: block;
  background-color: #f5f5f5;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.blog-section .bloglist > .col-lg-4 .c-news-card__body,
.blog-section .bloglist > .col-md-6 .c-news-card__body,
.blog-section .bloglist > [class*=col-] .c-news-card__body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
@media (width < 768px) {
  .blog-section .bloglist > .col-lg-4 .c-news-card__body,
  .blog-section .bloglist > .col-md-6 .c-news-card__body,
  .blog-section .bloglist > [class*=col-] .c-news-card__body {
    padding: var(--spacing-sm);
  }
}
.blog-section .bloglist > .col-lg-4 .c-news-card__body .c-news-card__date,
.blog-section .bloglist > .col-md-6 .c-news-card__body .c-news-card__date,
.blog-section .bloglist > [class*=col-] .c-news-card__body .c-news-card__date {
  color: var(--text-secondary);
  font-size: var(--font-size-sm);
  margin-block-end: 0.5em;
  font-weight: var(--font-weight-medium);
  flex-shrink: 0;
}
.blog-section .bloglist > .col-lg-4 .c-news-card__body .c-news-card__title,
.blog-section .bloglist > .col-md-6 .c-news-card__body .c-news-card__title,
.blog-section .bloglist > [class*=col-] .c-news-card__body .c-news-card__title {
  font-size: var(--font-size-base);
  line-height: 1.6;
  text-wrap: balance;
  color: var(--text-primary);
  margin-block-end: 0;
  flex-grow: 1;
  font-weight: var(--font-weight-medium);
}
@media (width < 768px) {
  .blog-section .bloglist > .col-lg-4 .c-news-card__body .c-news-card__title,
  .blog-section .bloglist > .col-md-6 .c-news-card__body .c-news-card__title,
  .blog-section .bloglist > [class*=col-] .c-news-card__body .c-news-card__title {
    font-size: var(--font-size-sm);
  }
}
.blog-section .bloglist > .col-lg-4 .c-news-card__body[data-category=tag-19]::before, .blog-section .bloglist > .col-lg-4 .c-news-card__body[data-template="19"]::before,
.blog-section .bloglist > .col-md-6 .c-news-card__body[data-category=tag-19]::before,
.blog-section .bloglist > .col-md-6 .c-news-card__body[data-template="19"]::before,
.blog-section .bloglist > [class*=col-] .c-news-card__body[data-category=tag-19]::before,
.blog-section .bloglist > [class*=col-] .c-news-card__body[data-template="19"]::before {
  background-color: #EC1C24;
}
.blog-section .bloglist > .col-lg-4 .c-news-card__body[data-category=tag-15]::before, .blog-section .bloglist > .col-lg-4 .c-news-card__body[data-template="15"]::before,
.blog-section .bloglist > .col-md-6 .c-news-card__body[data-category=tag-15]::before,
.blog-section .bloglist > .col-md-6 .c-news-card__body[data-template="15"]::before,
.blog-section .bloglist > [class*=col-] .c-news-card__body[data-category=tag-15]::before,
.blog-section .bloglist > [class*=col-] .c-news-card__body[data-template="15"]::before {
  background-color: #33C9FF;
}
.blog-section .bloglist > .col-lg-4 .c-news-card__body[data-category=tag-13]::before, .blog-section .bloglist > .col-lg-4 .c-news-card__body[data-template="13"]::before,
.blog-section .bloglist > .col-md-6 .c-news-card__body[data-category=tag-13]::before,
.blog-section .bloglist > .col-md-6 .c-news-card__body[data-template="13"]::before,
.blog-section .bloglist > [class*=col-] .c-news-card__body[data-category=tag-13]::before,
.blog-section .bloglist > [class*=col-] .c-news-card__body[data-template="13"]::before {
  background-color: #27ae60;
}
.blog-section .bloglist > .col-lg-4 .c-news-card__body[data-category=tag-17]::before, .blog-section .bloglist > .col-lg-4 .c-news-card__body[data-template="17"]::before,
.blog-section .bloglist > .col-md-6 .c-news-card__body[data-category=tag-17]::before,
.blog-section .bloglist > .col-md-6 .c-news-card__body[data-template="17"]::before,
.blog-section .bloglist > [class*=col-] .c-news-card__body[data-category=tag-17]::before,
.blog-section .bloglist > [class*=col-] .c-news-card__body[data-template="17"]::before {
  background-color: #FFD700;
  color: #333;
}
.blog-section .bloglist > .col-lg-4 .c-news-card__body[data-category=tag-14]::before, .blog-section .bloglist > .col-lg-4 .c-news-card__body[data-template="14"]::before,
.blog-section .bloglist > .col-md-6 .c-news-card__body[data-category=tag-14]::before,
.blog-section .bloglist > .col-md-6 .c-news-card__body[data-template="14"]::before,
.blog-section .bloglist > [class*=col-] .c-news-card__body[data-category=tag-14]::before,
.blog-section .bloglist > [class*=col-] .c-news-card__body[data-template="14"]::before {
  background-color: #F5941D;
}
.blog-section .bloglist > .col-lg-4 .c-news-card__link,
.blog-section .bloglist > .col-md-6 .c-news-card__link,
.blog-section .bloglist > [class*=col-] .c-news-card__link {
  position: absolute;
  inset: 0;
  z-index: 1;
  text-indent: -9999px;
  overflow: hidden;
}
.blog-section .bloglist > .col-lg-4 .c-news-card__link:focus-visible,
.blog-section .bloglist > .col-md-6 .c-news-card__link:focus-visible,
.blog-section .bloglist > [class*=col-] .c-news-card__link:focus-visible {
  outline: 2px solid var(--vedett-blue);
  outline-offset: 0.25em;
}
.blog-section .bloglist > .col-lg-4:hover .c-news-card__body,
.blog-section .bloglist > .col-md-6:hover .c-news-card__body,
.blog-section .bloglist > [class*=col-]:hover .c-news-card__body {
  transform: translateY(-0.25rem);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}
.blog-section .bloglist > .col-lg-4:hover .c-news-card__body .column-image,
.blog-section .bloglist > .col-md-6:hover .c-news-card__body .column-image,
.blog-section .bloglist > [class*=col-]:hover .c-news-card__body .column-image {
  transform: scale(1.05);
}

.footer {
  background-color: var(--vedett-darkblue);
  color: var(--bg-white);
}
.footer p {
  font-size: var(--font-size-sm);
  margin-block-end: 0;
}
.footer .navbar-brand img {
  transform: scale(0.7);
}

.btn-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-block: var(--spacing-sm);
  padding-inline: var(--spacing-md);
  background-color: var(--vedett-red);
  color: var(--bg-white);
  border-radius: 50%;
  border: none;
  font-size: var(--font-size-base);
  text-transform: uppercase;
  transition: var(--transition-base);
  aspect-ratio: 1/1;
  margin-inline: auto;
  cursor: pointer;
}
.btn-more:hover {
  background-color: color-mix(in srgb, var(--vedett-red) 90%, black);
  color: var(--bg-white);
  transform: translateY(-0.125em);
  box-shadow: var(--shadow-base);
}
.btn-more:focus-visible {
  outline: 2px solid white;
  outline-offset: 0.25em;
}

.ourstyle-01 {
  transform: translateY(3svh);
}
.ourstyle-01 .img-row {
  margin-block: var(--spacing-xl) var(--spacing-lg);
  margin-inline: auto;
  position: relative;
  inline-size: 100%;
  block-size: 100%;
  aspect-ratio: 2000/550;
  display: flex;
  align-items: center;
}
.ourstyle-01 .img-row img {
  position: absolute;
  inset: 0;
}
@media (width < 992px) {
  .ourstyle-01 .img-row img {
    object-fit: cover;
    min-block-size: 9.375rem;
  }
}
.ourstyle-01 .img-row h3 {
  color: var(--bg-white);
  position: relative;
  font-size: var(--font-size-3xl);
  text-transform: uppercase;
  padding-inline: var(--spacing-lg);
  font-family: var(--font-family-english);
  letter-spacing: 0.2rem;
  transform: translateY(2rem);
}
@media (width >= 992px) {
  .ourstyle-01 .img-row h3 {
    font-size: calc(var(--font-size-2xl) * 2);
    transform: translateY(0);
  }
}

.berwery-section {
  padding-block: var(--spacing-xl);
}
@media (width >= 992px) {
  .berwery-section {
    padding-block: var(--spacing-2xl);
  }
}

.ourstyle-02 {
  padding-block: var(--spacing-xl);
}
.ourstyle-02 .section-title .section-subtitle {
  margin-block-end: var(--spacing-sm);
}
@media (width >= 992px) {
  .ourstyle-02 .section-title .section-subtitle {
    margin-block-end: var(--spacing-lg);
  }
}
@media (width >= 992px) {
  .ourstyle-02 h3 {
    font-size: var(--font-size-2xl);
  }
}
.ourstyle-02 .item-row {
  display: flex;
  position: relative;
  inline-size: 100%;
  block-size: 100%;
  align-items: center;
  margin-block-end: 3rem;
  flex-direction: column;
}
@media (width >= 992px) {
  .ourstyle-02 .item-row {
    flex-direction: row;
  }
}
.ourstyle-02 .item-row img {
  aspect-ratio: 1008/678;
  max-inline-size: 43.75rem;
  opacity: 0.85;
}
.ourstyle-02 .item-row .inner {
  block-size: 100%;
  min-inline-size: 58%;
}
.ourstyle-02 .item-row:nth-child(even) img {
  max-inline-size: 100%;
}
@media (width >= 992px) {
  .ourstyle-02 .item-row:nth-child(even) img {
    order: 2;
    transform: translateX(-23%);
  }
}
.ourstyle-02 .item-row:nth-child(even) .inner {
  position: relative;
  order: 1;
  z-index: 10;
}
.ourstyle-02 .item-row:nth-child(odd) img {
  max-inline-size: 100%;
}
@media (width >= 992px) {
  .ourstyle-02 .item-row:nth-child(odd) .inner {
    transform: translateX(-23%);
    position: relative;
    z-index: 10;
  }
}

.beer-listpage {
  padding-block-end: var(--spacing-3xl);
  padding-bottom: 1svh;
}
.beer-listpage .beer-item {
  justify-content: space-between;
  border-top: solid 1px #ffffff;
}
@media (width < 992px) {
  .beer-listpage .beer-item {
    padding: 0;
  }
}
.beer-listpage .beer-item .beer-image {
  max-block-size: 24.0625rem;
  padding: var(--spacing-lg);
  flex-shrink: 0;
}
@media (width < 992px) {
  .beer-listpage .beer-item .beer-image {
    inline-size: 70%;
    max-block-size: 18rem;
    margin-inline: auto;
    padding: var(--spacing-sm);
  }
  .beer-listpage .beer-item .beer-image img {
    inline-size: 100%;
    block-size: 100%;
    object-fit: contain;
    display: block;
  }
}
.beer-listpage .beer-item .beer-inner {
  padding: var(--spacing-sm);
  flex-grow: 1;
  text-align: start;
}
@media (width >= 992px) {
  .beer-listpage .beer-item .beer-inner {
    padding: var(--spacing-lg);
  }
}
.beer-listpage .beer-item .beer-inner .beer-name {
  padding: 0;
  color: var(--vedett-darkblue);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-medium);
}
@media (width >= 992px) {
  .beer-listpage .beer-item .beer-inner .beer-name {
    font-size: calc(var(--font-size-lg) * 1.5);
  }
}
.beer-listpage .beer-item:nth-child(even) .beer-image {
  order: 2;
}
.beer-listpage .beer-item:nth-child(even) .beer-inner {
  order: 1;
}
@media (width >= 992px) {
  .beer-listpage .beer-item:nth-child(odd)::before, .beer-listpage .beer-item:nth-child(odd)::after {
    inset-inline-start: -0.5rem;
    inset-inline-end: 0;
  }
}
.beer-listpage .beer-item .btn-wrapper {
  margin-block-start: var(--spacing-lg);
}
@media (width < 992px) {
  .beer-listpage .beer-item .btn-wrapper {
    margin-block-start: var(--spacing-md);
  }
}
@media (width >= 992px) {
  .beer-listpage .beer-item .btn-wrapper .btn-more {
    margin-inline-end: 0;
  }
}

.originallabel-01 {
  padding-block-end: var(--spacing-xl);
}
@media (width >= 992px) {
  .originallabel-01 {
    padding-block-end: var(--spacing-3xl);
  }
}
@media (width >= 1400px) {
  .originallabel-01 .col-lg-6 {
    width: fit-content;
  }
}
.originallabel-01 .design .item {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (width >= 992px) {
  .originallabel-01 .design .item {
    max-inline-size: 34.375rem;
  }
}
.originallabel-01 .design .item p {
  background-color: #F5941D;
  position: relative;
  display: block;
  inline-size: fit-content;
  block-size: fit-content;
  color: #ffffff;
  padding-block: 1em;
  padding-inline-start: 5em;
  padding-inline-end: 1em;
  border: solid 3px #ffffff;
  z-index: -1;
  text-wrap: pretty;
}
@media (width < 992px) {
  .originallabel-01 .design .item p {
    inline-size: max-content;
    white-space: nowrap;
    padding-block: 0.75em;
    padding-inline: 1.5em;
    z-index: 2;
    text-wrap: nowrap;
    font-size: clamp(0.85rem, 0.8rem + 0.25vw, 1rem);
  }
}
@media (width < 992px) {
  .originallabel-01 .design .item img {
    inline-size: clamp(9rem, 40vw, 18.75rem);
    block-size: auto;
  }
}
.originallabel-01 .design .item:nth-child(odd) p {
  transform: translateX(-10rem);
}
@media (width < 992px) {
  .originallabel-01 .design .item:nth-child(odd) {
    flex-direction: row;
  }
  .originallabel-01 .design .item:nth-child(odd) p {
    transform: translateX(-2rem);
  }
}
@media (width >= 768px) and (width < 992px) {
  .originallabel-01 .design .item:nth-child(odd) p {
    transform: translateX(-5rem);
  }
}
.originallabel-01 .design .item:nth-child(even) {
  transform: translate(-1rem, -5rem);
  margin-block-end: -5rem;
}
.originallabel-01 .design .item:nth-child(even) img {
  transform: translateX(10rem);
}
@media (width < 992px) {
  .originallabel-01 .design .item:nth-child(even) {
    flex-direction: row-reverse;
    transform: translate(0, -2rem);
    margin-block-end: -2rem;
  }
  .originallabel-01 .design .item:nth-child(even) img {
    transform: none;
  }
  .originallabel-01 .design .item:nth-child(even) p {
    transform: translateX(2rem);
  }
}
@media (width >= 768px) and (width < 992px) {
  .originallabel-01 .design .item:nth-child(even) p {
    transform: translateX(5rem);
  }
}
.originallabel-01 h3 + div {
  margin-block-start: 10svh;
}
@media (width < 992px) {
  .originallabel-01 h3 + div {
    margin-block-start: 3em;
  }
}
.originallabel-01 h3 {
  line-height: 2;
  font-size: clamp(var(--font-size-lg, 1.125rem), 1rem, var(--font-size-2xl, 1.5rem));
}
@media (width < 992px) {
  .originallabel-01 h3 > br {
    display: none;
  }
  .originallabel-01 h3 {
    word-break: normal;
  }
}
.originallabel-01 .bg-white p {
  line-height: 2;
  text-wrap: pretty;
}

.flow-chart-section .flow-steps-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
@media (width >= 992px) {
  .flow-chart-section .flow-steps-wrapper {
    flex-direction: row;
    align-items: stretch;
    gap: 0;
  }
}
.flow-chart-section .flow-arrow {
  flex-shrink: 0;
}
@media (width >= 992px) {
  .flow-chart-section .flow-arrow {
    align-self: center;
    inline-size: 0;
    block-size: 0;
    border-block: 1rem solid transparent;
    border-inline-start: 1.2rem solid var(--vedett-blue);
    margin-inline: 0.5rem;
  }
}
@media (width < 992px) {
  .flow-chart-section .flow-arrow {
    inline-size: 0;
    block-size: 0;
    border-inline: 1rem solid transparent;
    border-block-start: 1.2rem solid var(--vedett-blue);
    margin-block: 0.8rem;
  }
}
.flow-chart-section .flow-step {
  position: relative;
  background-color: var(--bg-white);
  border-width: 4px;
  border-style: dotted;
  border-radius: 0;
  padding: 3.5rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media (width >= 992px) {
  .flow-chart-section .flow-step {
    flex: 1;
    padding: 4rem 2rem 2rem;
    width: fit-content;
  }
}
.flow-chart-section .flow-step.flow-step-blue {
  border-color: var(--vedett-blue);
}
.flow-chart-section .flow-step.flow-step-blue .step-badge {
  background-color: var(--vedett-blue);
}
.flow-chart-section .flow-step.flow-step-orange {
  border-color: var(--vedett-orange);
}
.flow-chart-section .flow-step.flow-step-orange .step-badge {
  background-color: var(--vedett-orange);
}
.flow-chart-section .flow-step.flow-step-red {
  border-color: var(--vedett-red);
}
.flow-chart-section .flow-step.flow-step-red .step-badge {
  background-color: var(--vedett-red);
}
.flow-chart-section .step-badge {
  position: absolute;
  inset-block-start: -1.5rem;
  inset-inline-start: -0.5rem;
  inline-size: 4rem;
  block-size: 4rem;
  display: grid;
  place-content: center;
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--bg-white);
  z-index: 2;
  clip-path: polygon(50% 0%, 63% 10%, 78% 2%, 82% 18%, 98% 20%, 92% 35%, 100% 50%, 92% 65%, 98% 80%, 82% 82%, 78% 98%, 63% 90%, 50% 100%, 37% 90%, 22% 98%, 18% 82%, 2% 80%, 8% 65%, 0% 50%, 8% 35%, 2% 20%, 18% 18%, 22% 2%, 37% 10%);
}
@media (width >= 768px) {
  .flow-chart-section .step-badge {
    inline-size: 4.5rem;
    block-size: 4.5rem;
    inset-block-start: -1.75rem;
    font-size: 1.75rem;
  }
}
@media (width >= 992px) {
  .flow-chart-section .step-badge {
    inline-size: 5rem;
    block-size: 5rem;
    inset-block-start: -2rem;
    inset-inline-start: -0.75rem;
    font-size: var(--font-size-2xl);
  }
}
.flow-chart-section .step-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.flow-chart-section .step-title {
  font-size: clamp(1.3rem, 1.2rem + 0.5vw, 1.75rem);
  font-weight: var(--font-weight-bold);
  margin-block-end: 1rem;
  line-height: 1.4;
  text-wrap: balance;
}
.flow-chart-section .step-description {
  font-size: clamp(0.9rem, 0.85rem + 0.25vw, var(--font-size-base));
  line-height: 1.7;
  margin-block-end: 0.5rem;
  color: var(--text-primary);
  text-wrap: pretty;
}
.flow-chart-section .step-note {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  margin-block-end: 1rem;
  text-wrap: pretty;
}
.flow-chart-section .step-image {
  margin-block-start: auto;
  padding-block-start: 1rem;
  display: flex;
  justify-content: center;
}
.flow-chart-section .step-image img {
  max-inline-size: 80%;
  block-size: auto;
  object-fit: contain;
}
@media (width >= 992px) {
  .flow-chart-section .step-image img {
    max-inline-size: 70%;
  }
}

.goto-designtool {
  padding-block-end: var(--spacing-2xl);
}
.goto-designtool .btn-area {
  max-inline-size: 62.5rem;
  display: block;
  inline-size: 100%;
  block-size: 100%;
  margin-block: var(--spacing-lg);
  margin-inline: auto;
  position: relative;
}
.goto-designtool .btn-area .bg-blue {
  position: relative;
  isolation: isolate;
}
.goto-designtool .btn-area .bg-blue::before {
  content: "";
  background-color: var(--vedett-blue);
  inline-size: 100%;
  block-size: 95%;
  position: absolute;
  inset-block-start: 20%;
  inset-inline-start: 0;
  z-index: -1;
  max-block-size: 19.375rem;
}
.goto-designtool .btn-area .bg-blue img {
  max-inline-size: 31.25rem;
}
@media (width >= 992px) {
  .goto-designtool .btn-area .bg-blue {
    display: flex;
    align-items: center;
  }
  .goto-designtool .btn-area .bg-blue img {
    flex: 0 0 50%;
    max-inline-size: 31.25rem;
  }
  .goto-designtool .btn-area .bg-blue .inner {
    flex: 1;
    margin-block-start: 5em;
  }
  .goto-designtool .btn-area .bg-blue h3 {
    font-size: calc(var(--font-size-2xl) * 1.5);
    line-height: 1.3;
    margin-block-end: 0.5em;
    padding-inline: 2rem;
  }
  .goto-designtool .btn-area .bg-blue .buttonre p {
    color: var(--vedett-red);
    text-align: center;
  }
  .goto-designtool .btn-area .bg-blue .buttonre span {
    background-color: var(--vedett-red);
    color: #ffffff;
    border-radius: 3rem;
    padding-block: 0.5em;
    padding-inline: 2em;
    font-size: var(--font-size-lg);
    margin-block: 1em;
    margin-inline: auto;
    display: flex;
    inline-size: fit-content;
  }
}
@media (width < 992px) {
  .goto-designtool .btn-area .bg-blue {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-block: 1.5rem;
    padding-inline: 1rem;
  }
  .goto-designtool .btn-area .bg-blue::before {
    inset-block-start: 0;
    block-size: 100%;
    max-block-size: none;
  }
  .goto-designtool .btn-area .bg-blue img {
    max-inline-size: 80%;
    block-size: auto;
    margin-inline: auto;
  }
  .goto-designtool .btn-area .bg-blue h3 {
    font-size: var(--font-size-2xl);
    line-height: 1.3;
    text-align: center;
    margin-block-start: 1rem;
  }
  .goto-designtool .btn-area .bg-blue .buttonre {
    text-align: center;
    margin-block-start: 0.5rem;
  }
  .goto-designtool .btn-area .bg-blue .buttonre p {
    color: var(--vedett-red);
    font-size: var(--font-size-sm);
  }
  .goto-designtool .btn-area .bg-blue .buttonre span {
    background-color: var(--vedett-red);
    color: #ffffff;
    border-radius: 3rem;
    padding-block: 0.5em;
    padding-inline: 1.5em;
    font-size: var(--font-size-base);
    margin-block: 0.75em;
    margin-inline: auto;
    display: flex;
    inline-size: fit-content;
  }
}
.goto-designtool .btn-area a {
  display: block;
  inline-size: 100%;
  block-size: 100%;
  transition: var(--transition-base);
}
.goto-designtool .btn-area a:hover {
  transform: translateY(-0.5em);
  opacity: 0.8;
}
.goto-designtool .btn-area a:active {
  opacity: 0.7;
  transform: scale(0.98);
  transition-duration: 0.1s;
}

.text-blue {
  color: var(--vedett-blue);
}

.page-create {
  overflow: clip;
}
.page-create footer,
.page-create .footer {
  display: none;
}

.designtools {
  min-block-size: 100vh;
  padding: 0;
  background: white;
  position: relative;
  margin-top: 5rem;
}
@media (width < 992px) {
  .designtools {
    margin-top: 3.65rem;
  }
}
.designtools::before {
  content: "";
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  inline-size: 100%;
  block-size: 6.25rem;
  background-color: var(--bg-light);
  z-index: 0;
}
@media (width < 992px) {
  .designtools::before {
    block-size: 4.375rem;
  }
}
.designtools .design-container {
  display: flex;
  max-inline-size: 100%;
  block-size: 100vh;
  padding: 0;
  position: relative;
  z-index: 1;
}
@media (width < 992px) {
  .designtools .design-container {
    flex-direction: column;
  }
}
.designtools .bottle-area {
  flex: 0 0 60%;
  display: grid;
  place-items: center;
  position: relative;
  padding: 2.5rem;
  overflow: clip;
}
@media (width < 992px) {
  .designtools .bottle-area {
    flex: 1;
    padding: 1.25rem;
    min-block-size: calc(100vh - 6.25rem);
  }
}
@media (width < 576px) {
  .designtools .bottle-area {
    min-block-size: calc(90svh - 70px);
  }
}
.designtools .bottle-area .logo {
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 5%;
  z-index: 10;
  max-inline-size: 8.5rem;
}
@media (width < 992px) {
  .designtools .bottle-area .logo {
    inset-block-start: 1.25rem;
    inset-inline-start: 1.25rem;
    max-inline-size: 5.5rem;
  }
}
@media (width < 556px) {
  .designtools .bottle-area .logo {
    max-inline-size: 4.5rem;
  }
}
@media (height < 785px) {
  .designtools .bottle-area .logo {
    max-inline-size: 3.5rem;
    inset-block-start: 0.25rem;
  }
}
.designtools .bottle-area .logo img {
  inline-size: 100%;
  block-size: auto;
  display: block;
}
.designtools .bottle-area .bottle-container {
  position: relative;
  inline-size: 28.85rem;
  block-size: 80rem;
  transform: translateY(-50%);
}
@media (width < 992px) {
  .designtools .bottle-area .bottle-container {
    transform-origin: center center;
  }
}
@media (width < 560px) {
  .designtools .bottle-area .bottle-container {
    inline-size: 100%;
    aspect-ratio: 285/313;
    block-size: auto;
    transform: translateY(-85%);
    margin-inline: auto;
  }
}
.designtools .bottle-area .bottle-image {
  max-inline-size: none;
  position: absolute;
  z-index: 1;
  pointer-events: none;
  object-fit: contain;
  inline-size: 97%;
  block-size: 100%;
  inset: 0;
}
@media (width < 992px) {
  .designtools .bottle-area .bottle-image {
    inline-size: clamp(448px, 411px + 7.5vw, 450px);
    block-size: auto;
    inset-inline-start: 50%;
    inset-block-start: 50%;
    transform: translate(-48%, -50%);
    inset-inline-end: auto;
    inset-block-end: auto;
  }
}
.designtools .bottle-area .canvas-wrapper {
  position: absolute;
  inset-block-start: 50%;
  inset-inline-start: 50%;
  transform: translate(-55%, 15.5%);
  z-index: 2;
}
@media (width < 560px) {
  .designtools .bottle-area .canvas-wrapper {
    transform: translate(-50%, 15.5%);
    inset-block-start: 50%;
    inset-inline-start: 50%;
  }
}
.designtools .bottle-area #designCanvas {
  border: none;
  cursor: crosshair;
  background: rgba(235, 235, 235, 0.95);
  display: block;
}
.designtools .bottle-area .canvas-object-controls {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.designtools .bottle-area .canvas-object-controls .canvas-delete-btn {
  position: absolute;
  inset-block-start: -0.9375rem;
  inset-inline-start: -0.9375rem;
  inline-size: 1.875rem;
  block-size: 1.875rem;
  border-radius: 50%;
  background: #333;
  color: white;
  border: 2px solid white;
  font-size: 1.25rem;
  font-weight: bold;
  cursor: pointer;
  display: grid;
  place-items: center;
  pointer-events: auto;
  z-index: 10;
  line-height: 1;
  padding: 0;
}
.designtools .bottle-area .canvas-object-controls .canvas-delete-btn:hover {
  background: #e74c3c;
}
.designtools .bottle-area .canvas-object-controls .canvas-delete-btn:focus-visible {
  outline: 2px solid var(--vedett-blue);
  outline-offset: 0.125em;
}
.designtools .bottle-area .canvas-object-controls .canvas-corner-btn {
  position: absolute;
  inline-size: 1.25rem;
  block-size: 1.25rem;
  border-radius: 50%;
  background: #0091ff;
  border: 2px solid white;
  cursor: pointer;
  pointer-events: auto;
}
.designtools .bottle-area .canvas-object-controls .canvas-corner-btn.top-left {
  inset-block-start: -0.625rem;
  inset-inline-start: -0.625rem;
}
.designtools .bottle-area .canvas-object-controls .canvas-corner-btn.top-right {
  inset-block-start: -0.625rem;
  inset-inline-end: -0.625rem;
}
.designtools .bottle-area .canvas-object-controls .canvas-corner-btn.bottom-left {
  inset-block-end: -0.625rem;
  inset-inline-start: -0.625rem;
}
.designtools .bottle-area .canvas-object-controls .canvas-corner-btn.bottom-right {
  inset-block-end: -0.625rem;
  inset-inline-end: -0.625rem;
}
.designtools .bottle-area .canvas-object-controls .canvas-corner-btn:hover {
  background: #0077cc;
  transform: scale(1.2);
}
.designtools .tool-panel {
  flex: 0 0 40%;
  background: white;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 100;
}
@media (width >= 992px) {
  .designtools .tool-panel {
    box-shadow: none;
    border-inline-start: none;
    background: none;
  }
}
@media (width < 992px) {
  .designtools .tool-panel {
    position: fixed;
    inset-block-end: 0;
    inset-inline-start: 0;
    inline-size: 100%;
    block-size: 70vh;
    max-block-size: 40.625rem;
    border-start-start-radius: 1.25rem;
    border-start-end-radius: 1.25rem;
    box-shadow: 0 -0.25rem 1.25rem rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 200;
  }
  .designtools .tool-panel.show {
    transform: translateY(0);
  }
}
.designtools .tool-panel .close-btn {
  position: absolute;
  inset-block-start: 1.25rem;
  inset-inline-end: 1.25rem;
  inline-size: 3.125rem;
  block-size: 3.125rem;
  border: none;
  background: white;
  font-size: 2.5rem;
  cursor: pointer;
  color: #333;
  z-index: 100;
  display: grid;
  place-items: center;
  line-height: 1;
  font-weight: 300;
}
.designtools .tool-panel .close-btn:hover {
  color: #e74c3c;
}
.designtools .tool-panel .close-btn:focus-visible {
  outline: 2px solid var(--vedett-blue);
  outline-offset: 0.125em;
}
@media (width >= 992px) {
  .designtools .tool-panel .close-btn {
    display: none;
  }
}
@media (width < 992px) {
  .designtools .tool-panel .close-btn {
    inset-block-start: 0.9375rem;
    inset-inline-end: 0.9375rem;
    inline-size: 2.5rem;
    block-size: 2.5rem;
    font-size: 2.1875rem;
  }
}
.designtools .tool-panel .tool-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-block-start: 1.875rem;
  padding-block-end: 1.25rem;
  padding-inline: 1.25rem;
  gap: 0.9375rem;
}
@media (width < 992px) {
  .designtools .tool-panel .tool-tabs {
    padding-block-start: 1.5625rem;
    padding-block-end: 0.9375rem;
    padding-inline: 0.9375rem;
    gap: 0.625rem;
  }
}
.designtools .tool-panel .tool-tab {
  inline-size: 4.625rem;
  block-size: 4.625rem;
  border-radius: 50%;
  border: none;
  background: white;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all 0.3s;
  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.15);
}
.designtools .tool-panel .tool-tab svg {
  inline-size: 2.8125rem;
  block-size: auto;
}
.designtools .tool-panel .tool-tab svg path {
  fill: black;
  stroke: black;
  transition: all 0.3s;
}
.designtools .tool-panel .tool-tab:hover {
  transform: translateY(-0.1875rem);
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.2);
}
.designtools .tool-panel .tool-tab:focus-visible {
  outline: 2px solid var(--vedett-blue);
  outline-offset: 0.125em;
}
.designtools .tool-panel .tool-tab.active {
  background: #000;
}
.designtools .tool-panel .tool-tab.active svg path {
  fill: white;
  stroke: white;
}
@media (width < 992px) {
  .designtools .tool-panel .tool-tab {
    inline-size: 4.375rem;
    block-size: 4.375rem;
  }
  .designtools .tool-panel .tool-tab svg {
    inline-size: 2.1875rem;
  }
}
.designtools .tool-panel .tab-label {
  text-align: center;
  margin-block-start: 0;
  font-size: 1rem;
  font-weight: bold;
  color: #333;
  letter-spacing: 0.125rem;
}
@media (width < 992px) {
  .designtools .tool-panel .tab-label {
    margin-block-start: 0.9375rem;
    font-size: 0.875rem;
  }
}
.designtools .tool-panel .tab-sublabel {
  text-align: center;
  margin-block-start: 0;
  font-size: 0.875rem;
  color: #999;
  letter-spacing: 0.0625rem;
}
@media (width < 992px) {
  .designtools .tool-panel .tab-sublabel {
    font-size: 0.75rem;
    margin-block-start: 0.3125rem;
  }
}
.designtools .tool-panel .tool-content {
  flex: 1;
  overflow-y: auto;
  padding: 0.75rem;
  max-block-size: calc(75svh - 15.625rem);
}
@media (width < 992px) {
  .designtools .tool-panel .tool-content {
    padding: 1rem;
    max-block-size: calc(70svh - 15.625rem);
  }
}
.designtools .tool-panel .tool-section {
  display: none;
}
.designtools .tool-panel .tool-section.active {
  display: block;
}
.designtools .upload-area {
  text-align: center;
  padding-block: 2.5rem;
  padding-inline: 1.25rem;
}
.designtools .upload-area .upload-btn {
  display: inline-block;
  padding-block: 0.9375em;
  padding-inline: 2.5em;
  background: #3498db;
  color: white;
  border: none;
  border-radius: 3.125rem;
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
  transition: all 0.3s;
}
.designtools .upload-area .upload-btn:hover {
  background: #2980b9;
  transform: scale(1.05);
}
.designtools .upload-area .upload-btn:focus-visible {
  outline: 2px solid var(--vedett-blue);
  outline-offset: 0.125em;
}
.designtools .upload-area #imageUpload {
  display: none;
}
.designtools .stamp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin-block-start: 0;
}
@media (width < 481px) {
  .designtools .stamp-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }
}
.designtools .stamp-grid .stamp-item {
  inline-size: 100%;
  aspect-ratio: 1;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0.15rem;
  background: transparent;
  display: grid;
  place-items: center;
}
.designtools .stamp-grid .stamp-item:hover {
  transform: scale(1.15);
  background: #f0f8ff;
}
.designtools .stamp-grid .stamp-item:active {
  transform: scale(1.05);
}
.designtools .stamp-grid .stamp-item:focus-visible {
  outline: 2px solid var(--vedett-blue);
  outline-offset: 0.125em;
}
.designtools .stamp-grid .stamp-item img {
  max-inline-size: 100%;
  max-block-size: 100%;
  object-fit: contain;
}
.designtools .stamp-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-block-start: 1.5625rem;
  gap: 1.875rem;
}
.designtools .stamp-pagination .page-btn {
  inline-size: 3.125rem;
  block-size: 3.125rem;
  border: none;
  background: #333;
  color: white;
  font-size: 1.25rem;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.3s;
}
.designtools .stamp-pagination .page-btn:hover {
  background: #555;
  transform: scale(1.1);
}
.designtools .stamp-pagination .page-btn:focus-visible {
  outline: 2px solid var(--vedett-blue);
  outline-offset: 0.125em;
}
.designtools .stamp-pagination .page-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  opacity: 0.5;
}
@media (width < 992px) {
  .designtools .stamp-pagination .page-btn {
    inline-size: 2.8125rem;
    block-size: 2.8125rem;
    font-size: 1.125rem;
  }
}
.designtools .text-tools {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.designtools .text-tools .text-input-area {
  inline-size: 100%;
  padding: 0.9375rem;
  border: 2px solid #ddd;
  border-radius: 0.5rem;
  font-size: 1rem;
  resize: vertical;
  min-block-size: 5rem;
}
.designtools .text-tools .text-input-area:focus {
  outline: none;
  border-color: #3498db;
}
.designtools .text-tools .text-controls {
  display: flex;
  flex-direction: column;
  gap: 0.9375rem;
}
.designtools .text-tools .control-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.designtools .text-tools .control-label {
  font-size: 0.875rem;
  font-weight: bold;
  color: #333;
}
.designtools .text-tools .control-input {
  inline-size: 100%;
  padding: 0.625rem;
  border: 1px solid #ddd;
  border-radius: 0.25rem;
  font-size: 0.875rem;
}
.designtools .text-tools .color-picker {
  inline-size: 100%;
  block-size: 3.125rem;
  border: 1px solid #ddd;
  border-radius: 0.25rem;
  cursor: pointer;
}
.designtools .text-tools .add-text-btn {
  inline-size: 100%;
  padding: 0.9375rem;
  background: #2ecc71;
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
}
.designtools .text-tools .add-text-btn:hover {
  background: #27ae60;
  transform: translateY(-0.125rem);
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.2);
}
.designtools .text-tools .add-text-btn:focus-visible {
  outline: 2px solid var(--vedett-blue);
  outline-offset: 0.125em;
}
@keyframes bounce-attention {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-15px);
  }
  60% {
    transform: translateY(-8px);
  }
}
.designtools .ok-button-wrapper {
  position: relative;
  display: inline-block;
}
.designtools .ok-button-wrapper.bounce .ok-button {
  animation: bounce-attention 1s ease infinite;
}
.designtools .ok-hint-bubble {
  position: fixed;
  inset-block-end: calc(9.375rem + 12px);
  inset-inline-end: 3.125rem;
  translate: 0 0;
  display: flex;
  align-items: center;
  gap: 0.4em;
  padding: 0.6em 0.8em;
  background-color: #333;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  scale: 0.8;
  transition: opacity 0.3s ease, scale 0.3s ease, visibility 0.3s;
}
.designtools .ok-hint-bubble::after {
  content: "";
  position: absolute;
  inset-block-start: 100%;
  inset-inline-end: 1.5rem;
  translate: 0 0;
  border: 8px solid transparent;
  border-block-start-color: #333;
}
.designtools .ok-hint-bubble.show {
  opacity: 1;
  visibility: visible;
  scale: 1;
}
.designtools .ok-hint-bubble .hint-icon {
  font-size: 1.1em;
}
.designtools .ok-hint-bubble .hint-text {
  line-height: 1.3;
}
.designtools .ok-hint-bubble .hint-close {
  margin-inline-start: 0.3em;
  padding: 0;
  background: none;
  border: none;
  color: inherit;
  opacity: 0.6;
  cursor: pointer;
  font-size: 1.1em;
  line-height: 1;
}
.designtools .ok-hint-bubble .hint-close:hover {
  opacity: 1;
}
@media (width < 992px) {
  .designtools .ok-hint-bubble {
    inset-block-end: auto;
    inset-block-start: calc(11.25rem + 12px);
    inset-inline-end: 1.875rem;
  }
  .designtools .ok-hint-bubble::after {
    inset-block-start: auto;
    inset-block-end: 100%;
    border-block-start-color: transparent;
    border-block-end-color: #333;
  }
}
@media (width < 567px) {
  .designtools .ok-hint-bubble {
    inset-block-start: calc(9.5rem + 12px);
    inset-inline-end: 0.75rem;
  }
}
@media (height < 785px) {
  .designtools .ok-hint-bubble {
    inset-block-start: calc(8.5rem + 12px);
  }
}
.designtools .ok-button {
  position: fixed;
  inset-block-end: 3.125rem;
  inset-inline-end: 3.125rem;
  inline-size: 6.25rem;
  block-size: 6.25rem;
  border-radius: 50%;
  background: #e74c3c;
  color: white;
  border: none;
  font-size: 1.75rem;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 0.375rem 1.25rem rgba(231, 76, 60, 0.4);
  transition: all 0.3s;
  z-index: 100;
}
.designtools .ok-button img {
  margin-inline: auto;
}
.designtools .ok-button:hover {
  background: #c0392b;
  transform: scale(1.1);
  box-shadow: 0 0.5rem 1.5625rem rgba(231, 76, 60, 0.5);
}
.designtools .ok-button:focus-visible {
  outline: 2px solid white;
  outline-offset: 0.25em;
}
@media (width < 992px) {
  .designtools .ok-button {
    inset-block-end: 0;
    inset-block-start: 6.25rem;
    inset-inline-end: 1.875rem;
    inline-size: 5rem;
    block-size: 5rem;
    font-size: 1.5rem;
  }
}
@media (width < 567px) {
  .designtools .ok-button {
    inset-block-end: 0;
    inset-block-start: 5.5rem;
    inset-inline-end: 0.75rem;
    inline-size: 4rem;
    block-size: 4rem;
    font-size: 1rem;
  }
}
@media (height < 785px) {
  .designtools .ok-button {
    inset-block-start: 4.5rem;
  }
}
.designtools .mobile-trigger-buttons {
  display: none;
}
@media (width < 992px) {
  .designtools .mobile-trigger-buttons {
    display: flex;
    position: fixed;
    inset-block-end: 0.5rem;
    inset-inline-start: 50%;
    transform: translateX(-50%);
    z-index: 90;
    gap: 0.9375rem;
    justify-content: center;
  }
}
.designtools .mobile-trigger-buttons .mobile-trigger-btn {
  inline-size: 4.375rem;
  block-size: 4.375rem;
  border-radius: 50%;
  border: none;
  background: white;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all 0.3s;
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.2);
}
.designtools .mobile-trigger-buttons .mobile-trigger-btn svg {
  inline-size: 2.5rem;
  block-size: auto;
}
.designtools .mobile-trigger-buttons .mobile-trigger-btn svg path {
  fill: black;
  stroke: black;
  transition: all 0.3s;
}
.designtools .mobile-trigger-buttons .mobile-trigger-btn.active {
  background: #000;
}
.designtools .mobile-trigger-buttons .mobile-trigger-btn.active svg path {
  fill: white;
  stroke: white;
}
.designtools .mobile-trigger-buttons .mobile-trigger-btn:active {
  transform: scale(0.95);
}
.designtools .mobile-trigger-buttons .mobile-trigger-btn:focus-visible {
  outline: 2px solid var(--vedett-blue);
  outline-offset: 0.125em;
}
.designtools .overlay {
  display: none;
}
@media (width < 992px) {
  .designtools .overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 195;
  }
  .designtools .overlay.show {
    display: block;
  }
}
.designtools .layers-panel-wrapper {
  position: relative;
  z-index: 180;
}
.designtools .layers-trigger-btn {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  inline-size: 3.5rem;
  block-size: 3.5rem;
  display: none;
  align-items: center;
  justify-content: center;
  background: light-dark(#fff, #2c2c2c);
  border: 1px solid light-dark(#ddd, #444);
  border-radius: 50%;
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.designtools .layers-trigger-btn:hover {
  transform: translateY(-0.125rem);
  box-shadow: 0 0.375rem 1rem rgba(0, 0, 0, 0.2);
}
.designtools .layers-trigger-btn:active {
  transform: translateY(0);
  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.15);
}
.designtools .layers-trigger-btn svg {
  color: light-dark(#333, #fff);
}
@media (width < 992px) {
  .designtools .layers-trigger-btn {
    display: flex;
  }
}
@media (width < 567px) {
  .designtools .layers-trigger-btn {
    right: 0.25rem;
    bottom: 6.25rem;
    inline-size: 2.5rem;
    block-size: 2.5rem;
  }
}
.designtools .layers-count {
  position: absolute;
  top: -0.25rem;
  right: -0.25rem;
  inline-size: 1.5rem;
  block-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #dc3545;
  color: #fff;
  font-size: 0.75rem;
  font-weight: bold;
  border-radius: 50%;
  border: 2px solid light-dark(#fff, #2c2c2c);
}
.designtools .layers-panel {
  position: fixed;
  right: 20.25rem;
  bottom: 1.25rem;
  inline-size: 18.75rem;
  max-block-size: 25rem;
  background: light-dark(#fff, #1e1e1e);
  border: 1px solid light-dark(#ddd, #444);
  border-radius: 0.5rem;
  box-shadow: 0 0.25rem 1.25rem rgba(0, 0, 0, 0.15);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
@media (width < 992px) {
  .designtools .layers-panel {
    right: 0;
    bottom: 0;
    inline-size: 100%;
    max-inline-size: 100%;
    max-block-size: 70vh;
    border-radius: 1rem 1rem 0 0;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 185;
  }
  .designtools .layers-panel.active {
    transform: translateY(0);
  }
}
.designtools .layers-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1em;
  background: light-dark(#f8f9fa, #2c2c2c);
  border-bottom: 1px solid light-dark(#dee2e6, #444);
}
.designtools .layers-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: light-dark(#212529, #fff);
}
.designtools .layers-close-btn {
  display: none;
  inline-size: 2rem;
  block-size: 2rem;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  color: light-dark(#6c757d, #adb5bd);
  cursor: pointer;
  transition: color 0.2s ease;
}
.designtools .layers-close-btn:hover {
  color: light-dark(#212529, #fff);
}
@media (width < 768px) {
  .designtools .layers-close-btn {
    display: flex;
  }
}
.designtools .layers-list {
  flex: 1;
  overflow-y: auto;
  padding: 0.5em;
}
.designtools .layers-empty {
  padding: 2em 1em;
  text-align: center;
  color: light-dark(#6c757d, #adb5bd);
  font-size: 0.875rem;
  margin: 0;
}
.designtools .layer-item {
  display: flex;
  align-items: center;
  gap: 0.75em;
  padding: 0.75em;
  margin-bottom: 0.5em;
  background: light-dark(#f8f9fa, #2c2c2c);
  border: 1px solid light-dark(#dee2e6, #444);
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.designtools .layer-item:hover {
  background: light-dark(#e9ecef, #3a3a3a);
  border-color: light-dark(#adb5bd, #555);
}
.designtools .layer-item.active {
  background: light-dark(#cfe2ff, #1a4d8f);
  border-color: light-dark(#0d6efd, #3a7bc8);
}
.designtools .layer-icon {
  flex-shrink: 0;
  inline-size: 2rem;
  block-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: light-dark(#fff, #1e1e1e);
  border-radius: 0.25rem;
  font-size: 1.125rem;
}
.designtools .layer-icon svg {
  inline-size: 1.25rem;
  block-size: 1.25rem;
  color: light-dark(#495057, #adb5bd);
}
.designtools .layer-icon img {
  inline-size: 100%;
  block-size: 100%;
  object-fit: contain;
}
.designtools .layer-info {
  flex: 1;
  min-inline-size: 0;
}
.designtools .layer-type {
  font-size: 0.75rem;
  color: light-dark(#6c757d, #adb5bd);
  margin: 0 0 0.125em;
}
.designtools .layer-name {
  font-size: 0.875rem;
  font-weight: 500;
  color: light-dark(#212529, #fff);
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.designtools .layer-delete-btn {
  flex-shrink: 0;
  inline-size: 2rem;
  block-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid light-dark(#dc3545, #b02a37);
  border-radius: 0.25rem;
  color: light-dark(#dc3545, #ff6b7a);
  cursor: pointer;
  transition: all 0.2s ease;
}
.designtools .layer-delete-btn:hover {
  background: light-dark(#dc3545, #b02a37);
  color: #fff;
}
.designtools .layer-delete-btn svg {
  inline-size: 1rem;
  block-size: 1rem;
}
.designtools .layers-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 180;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
@media (width < 768px) {
  .designtools .layers-overlay.active {
    opacity: 1;
    pointer-events: auto;
  }
}
@media (width >= 768px) {
  .designtools .layers-overlay {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .designtools .layers-panel,
  .designtools .layers-overlay,
  .designtools .layers-trigger-btn {
    transition: none;
  }
}
.designtools .color-palette {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.5em;
  margin-block-start: 0.5em;
}
.designtools .color-btn {
  position: relative;
  inline-size: 100%;
  aspect-ratio: 1;
  min-inline-size: 2.5rem;
  min-block-size: 2.5rem;
  padding: 0;
  border: 2px solid light-dark(#dee2e6, #495057);
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 0.2s ease;
  overflow: hidden;
}
.designtools .color-btn[data-color="#FFFFFF"] {
  border-color: light-dark(#adb5bd, #6c757d);
}
.designtools .color-btn:hover {
  transform: scale(1.1);
  border-color: light-dark(#0d6efd, #3a7bc8);
  box-shadow: 0 0.125rem 0.375rem rgba(0, 0, 0, 0.2);
}
.designtools .color-btn:active {
  transform: scale(1.05);
}
.designtools .color-btn.active {
  border-width: 3px;
  border-color: light-dark(#0d6efd, #3a7bc8);
}
.designtools .color-btn.active .color-checkmark {
  opacity: 1;
  transform: scale(1);
}
.designtools .color-checkmark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0);
  transition: all 0.2s ease;
}
.designtools .color-checkmark::before {
  content: "✓";
  font-size: 1.25rem;
  font-weight: bold;
  color: light-dark(#fff, #000);
  text-shadow: 0 0 0.125rem rgba(0, 0, 0, 0.8), 0 0 0.25rem rgba(0, 0, 0, 0.6);
}
.designtools .color-btn[data-color="#FFFFFF"] .color-checkmark::before,
.designtools .color-btn[data-color="#FFD700"] .color-checkmark::before {
  color: light-dark(#000, #fff);
  text-shadow: 0 0 0.125rem rgba(255, 255, 255, 0.8), 0 0 0.25rem rgba(255, 255, 255, 0.6);
}
.designtools .control-input#fontFamily option {
  padding-block: 0.5em;
  font-size: 0.9375rem;
}
.designtools .control-input#fontFamily optgroup[label=日本語フォント] option:nth-child(1) {
  font-family: "Noto Sans JP", sans-serif;
}
.designtools .control-input#fontFamily optgroup[label=日本語フォント] option:nth-child(2) {
  font-family: "M PLUS Rounded 1c", sans-serif;
}
.designtools .control-input#fontFamily optgroup[label=日本語フォント] option:nth-child(3) {
  font-family: "Kosugi Maru", sans-serif;
}
.designtools .control-input#fontFamily optgroup[label=日本語フォント] option:nth-child(4) {
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.designtools .control-input#fontFamily optgroup[label=日本語フォント] option:nth-child(5) {
  font-family: "Sawarabi Gothic", sans-serif;
}
.designtools .control-input#fontFamily optgroup[label=日本語フォント] option:nth-child(6) {
  font-family: "Shippori Mincho", serif;
}
.designtools .control-input#fontFamily optgroup[label=日本語フォント] option:nth-child(7) {
  font-family: "Klee One", cursive;
}
.designtools .control-input#fontFamily optgroup[label=日本語フォント] option:nth-child(8) {
  font-family: "Yusei Magic", sans-serif;
}
@media (prefers-reduced-motion: reduce) {
  .designtools .color-btn,
  .designtools .color-checkmark {
    transition: none;
  }
}
.designtools .glass-attension {
  width: 100%;
  position: absolute;
  bottom: 0;
  font-size: 0.8rem;
}
.designtools .help-trigger-btn {
  position: fixed;
  right: 13.25rem;
  bottom: 5.25rem;
  z-index: 160;
  inline-size: 3rem;
  block-size: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: light-dark(#fff, #2c2c2c);
  border: 2px solid light-dark(#0d6efd, #3a7bc8);
  border-radius: 50%;
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: all 0.2s ease;
}
.designtools .help-trigger-btn:hover {
  background: light-dark(#0d6efd, #3a7bc8);
  transform: scale(1.1);
}
.designtools .help-trigger-btn:hover .help-icon {
  color: #fff;
}
.designtools .help-trigger-btn:active {
  transform: scale(1.05);
}
@media (width < 992px) {
  .designtools .help-trigger-btn {
    display: flex;
  }
}
@media (width < 567px) {
  .designtools .help-trigger-btn {
    right: 0.25rem;
    bottom: 6.25rem;
    inline-size: 2.5rem;
    block-size: 2.5rem;
  }
}
.designtools .help-icon {
  color: light-dark(#0d6efd, #3a7bc8);
  transition: color 0.2s ease;
}
.designtools .help-panel-wrapper {
  position: relative;
  z-index: 2000;
}
.designtools .help-panel {
  position: fixed;
  left: 0;
  top: 0;
  inline-size: min(90vw, 28rem);
  block-size: 100svh;
  background: light-dark(#fff, #1e1e1e);
  box-shadow: 0.25rem 0 1.25rem rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.designtools .help-panel.active {
  transform: translateX(0);
}
@starting-style {
  .designtools .help-panel.active {
    transform: translateX(-100%);
  }
}
.designtools .help-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5em;
  background: light-dark(#f8f9fa, #2c2c2c);
  border-bottom: 1px solid light-dark(#dee2e6, #444);
}
.designtools .help-title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: light-dark(#212529, #fff);
}
.designtools .help-close-btn {
  inline-size: 2.5rem;
  block-size: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  font-size: 2rem;
  line-height: 1;
  color: light-dark(#6c757d, #adb5bd);
  cursor: pointer;
  transition: color 0.2s ease;
}
.designtools .help-close-btn:hover {
  color: light-dark(#212529, #fff);
}
.designtools .help-content {
  flex: 1;
  overflow-y: auto;
  padding: 1.5em;
}
.designtools .help-step {
  display: flex;
  gap: 1em;
  margin-block-end: 1.5em;
  padding-block-end: 1.5em;
  border-bottom: 1px solid light-dark(#e9ecef, #333);
}
.designtools .help-step:last-of-type {
  border-bottom: none;
}
.designtools .help-step-number {
  flex-shrink: 0;
  inline-size: 2rem;
  block-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: light-dark(#0d6efd, #3a7bc8);
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 50%;
}
.designtools .help-step-content {
  flex: 1;
  min-inline-size: 0;
}
.designtools .help-step-title {
  margin: 0 0 0.5em;
  font-size: 1rem;
  font-weight: 600;
  color: light-dark(#212529, #fff);
}
.designtools .help-step-text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: light-dark(#495057, #adb5bd);
  text-wrap: pretty;
}
.designtools .help-step-text strong {
  color: light-dark(#0d6efd, #3a7bc8);
  font-weight: 600;
}
.designtools .help-step-list {
  margin: 0;
  padding-inline-start: 1.25em;
  list-style-type: disc;
}
.designtools .help-step-list li {
  margin-block-end: 0.5em;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: light-dark(#495057, #adb5bd);
}
.designtools .help-step-list li:last-child {
  margin-block-end: 0;
}
.designtools .help-tips {
  margin-block-start: 1.5em;
  padding: 1em;
  background: light-dark(#e7f3ff, #1a2634);
  border-radius: 0.5rem;
  border: 1px solid light-dark(#b6d4fe, #2a4561);
}
.designtools .help-tips-title {
  margin: 0 0 0.75em;
  font-size: 1rem;
  font-weight: 600;
  color: light-dark(#0d6efd, #5ca3e6);
}
.designtools .help-tips-list {
  margin: 0;
  padding-inline-start: 1.25em;
  list-style-type: none;
}
.designtools .help-tips-list li {
  position: relative;
  margin-block-end: 0.5em;
  padding-inline-start: 0.5em;
  font-size: 0.875rem;
  line-height: 1.6;
  color: light-dark(#495057, #adb5bd);
}
.designtools .help-tips-list li::before {
  content: "▸";
  position: absolute;
  left: -1em;
  color: light-dark(#0d6efd, #5ca3e6);
}
.designtools .help-tips-list li:last-child {
  margin-block-end: 0;
}
.designtools .help-tips-list li strong {
  color: light-dark(#212529, #fff);
  font-weight: 600;
}
.designtools .help-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.designtools .help-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
@starting-style {
  .designtools .help-overlay.active {
    opacity: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .designtools .help-panel,
  .designtools .help-overlay,
  .designtools .help-trigger-btn {
    transition: none;
  }
}
@media (width < 992px) {
  .designtools .help-panel {
    inline-size: 80vw;
  }
  .designtools .help-trigger-btn {
    left: 1rem;
    bottom: 5rem;
    inline-size: 2.75rem;
    block-size: 2.75rem;
  }
  .designtools:has(.tool-panel.show) .designtools .help-trigger-btn, .designtools:has(.layers-panel.active) .designtools .help-trigger-btn {
    z-index: 90;
  }
}
@media (width < 992px) {
  .designtools:has(.tool-panel.show) .help-trigger-btn, .designtools:has(.layers-panel.active) .help-trigger-btn {
    z-index: 90;
  }
}

.scrolltotop {
  position: fixed;
  inset-block-end: 2rem;
  inset-inline-end: 0.25rem;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(1.25rem);
  transition: all 0.3s ease;
}
@media (width >= 768px) {
  .scrolltotop {
    inset-block-end: 2.5rem;
    inset-inline-end: 2.5rem;
  }
}
.scrolltotop.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top {
  display: grid;
  place-items: center;
  inline-size: 2.75rem;
  block-size: 2.75rem;
  border-radius: 50%;
  background-color: var(--vedett-blue);
  cursor: pointer;
  box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.15);
  text-decoration: none;
  transition: all 0.3s ease;
}
@media (width >= 768px) {
  .back-to-top {
    inline-size: 4rem;
    block-size: 4rem;
  }
}
.back-to-top:hover {
  background-color: var(--vedett-orange);
  transform: translateY(-0.25rem);
  box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.2);
}
.back-to-top:active {
  transform: translateY(0);
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.15);
}
.back-to-top:focus-visible {
  outline: 2px solid white;
  outline-offset: 0.25em;
}
.back-to-top::before {
  content: "";
  display: block;
  inline-size: 0.75rem;
  block-size: 0.75rem;
  border-block-start: 2px solid white;
  border-inline-start: 2px solid white;
  transform: rotate(45deg) translate(0.15rem, 0.135rem);
}
@media (width >= 768px) {
  .back-to-top::before {
    inline-size: 0.875rem;
    block-size: 0.875rem;
  }
}

@keyframes pagetop-fadein {
  from {
    opacity: 0;
    visibility: hidden;
    transform: translateY(1.25rem);
  }
  to {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
@keyframes pagetop-fadeout {
  from {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    visibility: hidden;
    transform: translateY(1.25rem);
  }
}
.product-selection {
  max-inline-size: 75rem;
  margin-block: 2.5rem;
  margin-inline: auto;
  padding: 1.25rem;
}

.page-title {
  text-align: center;
  margin-block-end: 2.5rem;
}
.page-title h1 {
  font-size: clamp(1.5rem, 1.25rem + 1vw, 2rem);
  font-weight: bold;
  margin-block-end: 0.625rem;
  text-wrap: balance;
}
.page-title p {
  color: #666;
  font-size: 1rem;
  text-wrap: pretty;
}

.product-card {
  background: white;
  border-radius: 0.75rem;
  padding: 1.875rem;
  margin-block-end: 1.25rem;
  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s;
  border: 3px solid transparent;
}
.product-card:hover {
  box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.15);
}
.product-card:focus-within {
  outline: 2px solid var(--vedett-blue);
  outline-offset: 0.25em;
}
@media (width < 768px) {
  .product-card {
    padding: 1.25rem;
  }
}

.product-image {
  text-align: center;
  margin-block-end: 1.25rem;
  margin-inline: auto;
  width: fit-content;
}
.product-image img {
  max-inline-size: 12.5rem;
  block-size: auto;
}

.product-name {
  font-size: clamp(1.25rem, 1.125rem + 0.5vw, 1.5rem);
  font-weight: bold;
  text-align: center;
  text-wrap: balance;
  margin-block-end: 0.625rem;
}

.product-type {
  text-align: center;
  color: #666;
  font-size: 0.875rem;
  margin-block-end: 0.9375rem;
  border: solid 1px var(--vedett-yellow);
  width: fit-content;
  padding-inline: 1em;
  margin-inline: auto;
}

.product-description {
  color: #333;
  font-size: 0.875rem;
  line-height: 1.6;
  margin-block-end: 0.9375rem;
  text-wrap: pretty;
}

.product-specs {
  background-color: #f8f9fa;
  padding: 0.9375rem;
  border-radius: 0.5rem;
  font-size: 0.8125rem;
  margin-block-end: 1.25rem;
}
.product-specs dt {
  font-weight: bold;
  color: var(--vedett-orange);
  margin-block-end: 0.3125rem;
}
.product-specs dd {
  margin-block-end: 0.625rem;
  color: #333;
}
.product-specs dd ul {
  display: flex;
  padding-left: 0;
}
.product-specs dd ul li {
  list-style: none;
  margin-inline-end: 0.5em;
}

.quantity-section {
  border-block-start: 2px solid #e9ecef;
  padding-block-start: 1.25rem;
  margin-block-start: 1.25rem;
}
.quantity-section .quantity-title {
  font-size: 1rem;
  font-weight: 700;
  margin-block-end: 0.75em;
  padding-block-end: 0.25em;
  border-block-end: 2px solid var(--vedett-yellow, #c8a45a);
  display: inline-block;
  color: #333;
}

.quantity-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1em;
  padding: 1em;
  margin-block-end: 0.5em;
  background: #f8f9fa;
  border: 2px solid transparent;
  border-radius: 0.5em;
  transition: border-color 0.2s, background-color 0.2s;
}
.quantity-row.selected {
  border-color: var(--vedett-blue, #0091ff);
  background: #e3f2fd;
}
@media (width < 576px) {
  .quantity-row {
    grid-template-columns: 1fr;
    gap: 0.5em;
  }
}

.quantity-info .quantity-pack-name {
  font-size: 1.125em;
  font-weight: 700;
  margin-block-end: 0.15em;
}
.quantity-info .quantity-price {
  font-size: 1.25em;
  font-weight: 700;
  color: #e74c3c;
}
.quantity-info .quantity-price .tax-label {
  font-size: 0.72em;
  font-weight: 400;
}
.quantity-info .quantity-per {
  font-size: 0.8125em;
  color: #666;
}

.quantity-select-wrap {
  text-align: end;
}
@media (width < 576px) {
  .quantity-select-wrap {
    text-align: start;
  }
}

.quantity-select {
  appearance: none;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none'/%3E%3C/svg%3E") no-repeat right 0.75em center;
  border: 1px solid #ccc;
  border-radius: 0.375em;
  padding: 0.5em 2.5em 0.5em 0.75em;
  font-size: 0.9375em;
  color: #333;
  cursor: pointer;
  min-inline-size: 13em;
  transition: border-color 0.2s;
}
.quantity-select:focus {
  outline: 2px solid var(--vedett-blue, #0091ff);
  outline-offset: 1px;
}
@media (width < 576px) {
  .quantity-select {
    inline-size: 100%;
  }
}

.quantity-subtotal {
  font-size: 0.875em;
  font-weight: 600;
  color: #b8860b;
  margin-block-start: 0.375em;
  min-block-size: 1.25em;
}
@starting-style {
  .quantity-subtotal.has-value {
    opacity: 0;
    translate: 0 -0.25em;
  }
}
.quantity-subtotal.has-value {
  opacity: 1;
  translate: 0 0;
  transition: opacity 0.3s ease, translate 0.3s ease;
}

.order-summary {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 0.75em;
  padding: 1.5em;
  margin-block-start: 1em;
  box-shadow: 0 -0.125em 0.5em rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.order-summary.has-items {
  box-shadow: 0 -0.125em 1em rgba(0, 145, 255, 0.1);
}
.order-summary .summary-title {
  font-size: 1.125em;
  font-weight: 700;
  margin-block-end: 0.75em;
  padding-block-end: 0.5em;
  border-block-end: 1px solid #ddd;
}
.order-summary .summary-empty {
  color: #666;
  font-size: 0.875em;
  text-align: center;
  padding: 0.5em 0;
}
.order-summary .summary-item {
  display: flex;
  justify-content: space-between;
  padding: 0.375em 0;
  font-size: 0.9375em;
}
.order-summary .summary-item .item-label {
  color: #333;
}
.order-summary .summary-item .item-price {
  font-weight: 600;
}
.order-summary .summary-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.375em 0;
  font-size: 0.9375em;
}
.order-summary .summary-row .summary-label {
  color: #333;
}
.order-summary .summary-row .summary-value {
  font-weight: 600;
}
.order-summary .summary-row.summary-total {
  padding-block-start: 0.75em;
  margin-block-start: 0.75em;
  border-block-start: 2px solid var(--vedett-blue, #0091ff);
  font-size: 1.125em;
  font-weight: 700;
}
.order-summary .summary-row.summary-total .total-price {
  font-size: 1.375em;
  color: #e74c3c;
}
.order-summary .bank-fee-note {
  font-size: 0.875em;
  color: #666;
  font-weight: 400;
}
.order-summary .summary-bottles {
  text-align: end;
  font-size: 0.8125em;
  color: #666;
  margin-block-start: 0.25em;
}

.payment-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1em;
}
@media (width < 600px) {
  .payment-methods {
    grid-template-columns: 1fr;
  }
}

.payment-method-card {
  position: relative;
  border: 2px solid #ddd;
  border-radius: 0.75em;
  padding: 1.5em 1em;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.payment-method-card:hover {
  border-color: #999;
}
.payment-method-card.selected {
  border-color: var(--vedett-blue, #0091ff);
  box-shadow: 0 0 0 1px var(--vedett-blue, #0091ff);
  background: rgba(0, 145, 255, 0.04);
}
.payment-method-card input[type=radio] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.payment-method-card label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5em;
  cursor: pointer;
}

.payment-icon {
  font-size: 2.5em;
  line-height: 1;
}

.payment-name {
  font-size: 1.05em;
  font-weight: 700;
}

.payment-desc {
  font-size: 0.8em;
  color: #666;
  text-wrap: balance;
}

.button-group {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  margin-block-start: 2.5rem;
}
@media (width < 768px) {
  .button-group {
    flex-direction: column;
  }
}

.btn-custom {
  padding-block: 0.9375rem;
  padding-inline: 2.5rem;
  font-size: 1.125rem;
  font-weight: bold;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}
@media (width < 768px) {
  .btn-custom {
    inline-size: 100%;
  }
}
.btn-custom:focus-visible {
  outline: 2px solid var(--vedett-blue);
  outline-offset: 0.25em;
}

.btn-back {
  background-color: #6c757d;
  color: white;
}
.btn-back:hover {
  background-color: color-mix(in srgb, #6c757d 90%, black);
}

.btn-next {
  background-color: #0091ff;
  color: white;
}
.btn-next:hover {
  background-color: color-mix(in srgb, var(--vedett-blue, #0091ff) 90%, black);
}
.btn-next:disabled {
  background-color: #ccc;
  cursor: not-allowed;
  opacity: 0.6;
}

.order-container {
  max-inline-size: 50rem;
  margin-block: 2.5rem;
  margin-inline: auto;
  padding: 1.25rem;
}

.order-section {
  background: white;
  border-radius: 0.75rem;
  padding: 1.875rem;
  margin-block-end: 1.875rem;
  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.1);
}

.design-preview-box {
  display: flex;
}
.design-preview-box img {
  margin-inline: auto;
}

.form-group {
  margin-block-end: 1.25rem;
}

.form-label {
  font-weight: bold;
  margin-block-end: 0.5rem;
  display: block;
  color: #333;
}

.required {
  color: #e74c3c;
  margin-inline-start: 0.25rem;
}

.form-control {
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 0.5rem;
  inline-size: 100%;
}
.form-control:focus {
  border-color: var(--vedett-blue, #0091ff);
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 145, 255, 0.1);
}

.form-row {
  display: flex;
  gap: 0.9375rem;
}
.form-row .form-group {
  flex: 1;
}
@media (width < 768px) {
  .form-row {
    flex-direction: column;
  }
}

.postal-code-group {
  display: flex;
  align-items: flex-end;
  gap: 0.625rem;
}
@media (width < 768px) {
  .postal-code-group {
    flex-direction: column;
    align-items: stretch;
  }
}

.postal-code-input {
  max-inline-size: 12.5rem;
}
@media (width < 768px) {
  .postal-code-input {
    max-inline-size: 100%;
  }
}

.btn-search-address {
  padding: 0.75rem 1.25rem;
  background-color: #6c757d;
  color: white;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  white-space: nowrap;
  font-weight: bold;
}
.btn-search-address:hover {
  background-color: color-mix(in srgb, #6c757d 90%, black);
}

.help-text {
  font-size: 0.8125rem;
  color: #666;
  margin-block-start: 0.3125rem;
}

.order-summary-form {
  background-color: #f8f9fa;
  padding: 1.25rem;
  border-radius: 0.5rem;
  margin-block-end: 1.25rem;
}
.order-summary-form .summary-row {
  display: flex;
  justify-content: space-between;
  margin-block-end: 0.625rem;
  padding-block-end: 0.625rem;
  border-block-end: 1px solid #dee2e6;
}
.order-summary-form .summary-row:last-child {
  border-block-end: none;
  font-weight: bold;
  font-size: 1.125rem;
  margin-block-start: 0.625rem;
  padding-block-start: 0.625rem;
  border-block-start: 2px solid #333;
}
.order-summary-form .summary-label {
  color: #666;
}
.order-summary-form .summary-value {
  font-weight: bold;
  color: #333;
}
.order-summary-form .total-price {
  color: #e74c3c;
  font-size: 1.5rem;
}

.page-payment-method .payment-container {
  max-inline-size: 50rem;
  margin-block: 2.5rem;
  margin-inline: auto;
  padding: 1.25rem;
}
.page-payment-method .payment-section {
  background: white;
  border-radius: 0.75rem;
  padding: 1.875rem;
  margin-block-end: 1.875rem;
  box-shadow: var(--shadow-base);
}
.page-payment-method .payment-option {
  background: #f8f9fa;
  border: 3px solid #ddd;
  border-radius: 0.75rem;
  padding: 1.5625rem;
  margin-block-end: 1.25rem;
  cursor: pointer;
  transition: var(--transition-base);
  position: relative;
}
.page-payment-method .payment-option:hover {
  border-color: var(--vedett-blue);
  background-color: #f0f8ff;
}
.page-payment-method .payment-option.selected {
  border-color: var(--vedett-blue);
  background-color: #e3f2fd;
  box-shadow: 0 0 0 2px rgba(0, 145, 255, 0.2);
}
.page-payment-method .payment-option input[type=radio] {
  position: absolute;
  inset-block-start: 1.5625rem;
  inset-inline-end: 1.5625rem;
  inline-size: 1.5rem;
  block-size: 1.5rem;
  cursor: pointer;
  accent-color: var(--vedett-blue);
}
.page-payment-method .payment-name {
  font-size: 1.375rem;
  font-weight: var(--font-weight-bold);
  margin-block-end: 0.625rem;
  padding-inline-end: 3.125rem;
}
.page-payment-method .payment-icon {
  font-size: 2rem;
  margin-block-end: 0.625rem;
}
.page-payment-method .payment-description {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-block-end: 0.625rem;
  text-wrap: pretty;
}
.page-payment-method .payment-fee {
  color: var(--vedett-red);
  font-weight: var(--font-weight-bold);
  margin-block-start: 0.625rem;
}
.page-payment-method .payment-detail {
  background: white;
  border-inline-start: 4px solid var(--vedett-blue);
  padding: 0.9375rem;
  margin-block-start: 0.9375rem;
  display: none;
}
.page-payment-method .payment-detail h4 {
  font-size: 1rem;
  font-weight: var(--font-weight-bold);
  margin-block-end: 0.625rem;
}
.page-payment-method .payment-detail p {
  font-size: 0.875rem;
  color: var(--text-primary);
  margin-block-end: 0.3125rem;
  text-wrap: pretty;
}
.page-payment-method .payment-option.selected .payment-detail {
  display: block;
}
.page-payment-method .bank-info {
  background: #f8f9fa;
  padding: 0.9375rem;
  border-radius: 0.5rem;
  margin-block-start: 0.625rem;
}
.page-payment-method .bank-info dt {
  font-weight: var(--font-weight-bold);
  color: var(--text-secondary);
  margin-block-end: 0.3125rem;
}
.page-payment-method .bank-info dd {
  margin-block-end: 0.625rem;
  color: var(--text-primary);
  font-size: 1rem;
}
.page-payment-method .card-brands {
  display: flex;
  gap: 0.625rem;
  margin-block-start: 0.625rem;
  align-items: center;
}
.page-payment-method .card-brands img {
  block-size: 1.875rem;
  opacity: 0.7;
}
.page-payment-method .card-brands span {
  font-size: 0.75rem;
  color: var(--text-secondary);
}
.page-payment-method .alert-info {
  background-color: #e3f2fd;
  border-inline-start: 4px solid #2196f3;
  padding: 0.9375rem;
  margin-block-start: 1.25rem;
  border-radius: 0.25rem;
}
.page-payment-method .alert-info p {
  margin: 0;
  color: #1976d2;
  font-size: 0.875rem;
  text-wrap: pretty;
}
@media (width < 768px) {
  .page-payment-method .payment-option {
    padding: 1.25rem;
  }
  .page-payment-method .payment-name {
    font-size: 1.125rem;
  }
}

.page-confirm .design-preview {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-block-start: 6em;
  padding-block: 2em;
  padding-inline: 1em;
  margin-block-end: 2em;
  margin-inline: auto;
  width: fit-content;
}
.page-confirm .design-preview h2 {
  font-size: clamp(1.25rem, 1.125rem + 0.5vw, 1.5rem);
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
  margin-block-end: 1em;
}
.page-confirm .design-preview img {
  max-inline-size: clamp(12.5rem, 15rem + 5vw, 18.75rem);
  inline-size: 100%;
  block-size: auto;
  box-shadow: 0 0.25em 0.75em rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  object-fit: contain;
}
@media (width < 768px) {
  .page-confirm .design-preview {
    padding-block: 1.5em;
  }
  .page-confirm .design-preview h2 {
    font-size: 1.125rem;
  }
  .page-confirm .design-preview img {
    max-inline-size: clamp(10rem, 12.5rem + 3vw, 15.625rem);
  }
}
@media (width < 481px) {
  .page-confirm .design-preview h2 {
    font-size: 1rem;
  }
  .page-confirm .design-preview img {
    max-inline-size: clamp(8rem, 10rem + 2vw, 12.5rem);
  }
}
.page-confirm .confirm-container {
  max-inline-size: 50rem;
  margin-block: 2.5rem;
  margin-inline: auto;
  padding: 1.25rem;
}
.page-confirm .confirm-section {
  background: white;
  border-radius: 0.75rem;
  padding: 1.875rem;
  margin-block-end: 1.875rem;
  box-shadow: var(--shadow-base);
}
.page-confirm .info-row {
  display: flex;
  justify-content: space-between;
  padding-block: 0.9375rem;
  border-block-end: 1px solid #e9ecef;
}
.page-confirm .info-row:last-child {
  border-block-end: none;
}
.page-confirm .info-label {
  color: var(--text-secondary);
  font-weight: var(--font-weight-medium);
  min-inline-size: 8.75rem;
}
.page-confirm .info-value {
  color: var(--text-primary);
  font-weight: var(--font-weight-bold);
  text-align: end;
  flex: 1;
}
.page-confirm .bank-info-box {
  background: #f8f9fa;
  padding: 1.25rem;
  border-radius: 0.5rem;
  margin-block-start: 1.25rem;
}
.page-confirm .bank-info-box h4 {
  font-size: 1rem;
  font-weight: var(--font-weight-bold);
  margin-block-end: 0.9375rem;
}
.page-confirm .bank-info-box .bank-detail {
  background: white;
  padding: 0.9375rem;
  border-radius: 0.5rem;
  margin-block-end: 0.625rem;
}
.page-confirm .bank-info-box .bank-detail dt {
  font-weight: var(--font-weight-bold);
  color: var(--text-secondary);
  margin-block-end: 0.3125rem;
  font-size: 0.875rem;
}
.page-confirm .bank-info-box .bank-detail dd {
  margin-block-end: 0.625rem;
  color: var(--text-primary);
  font-size: 1rem;
}
.page-confirm .bank-info-box .bank-detail dd:last-child {
  margin-block-end: 0;
}
.page-confirm .bank-info-box .bank-note {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-block: 0.3125rem;
  text-wrap: pretty;
}
.page-confirm .total-section {
  background: var(--bg-light);
  border: 2px solid var(--vedett-blue);
}
.page-confirm .total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.page-confirm .total-label {
  font-size: 1.25rem;
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
}
.page-confirm .total-price {
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
  color: var(--vedett-red);
}
.page-confirm .notice-box {
  background: #fff3cd;
  padding: 1.25rem;
  border-radius: 0.5rem;
  border-inline-start: 4px solid #ffc107;
}
.page-confirm .notice-box h4 {
  font-size: 1rem;
  font-weight: var(--font-weight-bold);
  margin-block-end: 0.9375rem;
  color: #856404;
}
.page-confirm .notice-box ul {
  margin-block: 0;
  padding-inline-start: 1.25rem;
}
.page-confirm .notice-box ul li {
  margin-block-end: 0.625rem;
  color: #856404;
  font-size: 0.875rem;
  line-height: 1.6;
  text-wrap: pretty;
}
.page-confirm .notice-box ul li:last-child {
  margin-block-end: 0;
}
.page-confirm .notice-box .agree-checkbox {
  margin-block-start: 1.25rem;
  padding-block-start: 1.25rem;
  border-block-start: 1px solid #ffc107;
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.page-confirm .notice-box .agree-checkbox input[type=checkbox] {
  inline-size: 1.25rem;
  block-size: 1.25rem;
  cursor: pointer;
  accent-color: var(--vedett-blue);
}
.page-confirm .notice-box .agree-checkbox label {
  font-weight: var(--font-weight-bold);
  color: #856404;
  cursor: pointer;
  font-size: 1rem;
}
.page-confirm .btn-confirm {
  background-color: var(--vedett-red);
  color: white;
}
.page-confirm .btn-confirm:hover {
  background-color: color-mix(in srgb, var(--vedett-red) 90%, black);
}
.page-confirm .btn-confirm:disabled {
  background-color: #ccc;
  cursor: not-allowed;
  opacity: 0.6;
}
@media (width < 768px) {
  .page-confirm .info-row {
    flex-direction: column;
    gap: 0.3125rem;
  }
  .page-confirm .info-label {
    min-inline-size: auto;
  }
  .page-confirm .info-value {
    text-align: start;
  }
  .page-confirm .total-row {
    flex-direction: column;
    gap: 0.625rem;
    text-align: center;
  }
}

.page-latest h3 {
  color: var(--vedett-blue);
  margin-block-end: 1em;
}
.page-latest .btn-confirm {
  background-color: var(--vedett-red);
  color: #ffffff;
}

.design-preview-small {
  max-width: 400px;
  margin: 0 auto;
}
.design-preview-small img {
  max-width: 100%;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.page-complete {
  padding-block-start: 5rem;
}
.page-complete .complete-container {
  max-inline-size: 50rem;
  margin-block: 2.5rem;
  margin-inline: auto;
  padding: 1.25rem;
}
.page-complete .complete-header {
  text-align: center;
  margin-block-end: 2.5rem;
}
.page-complete .complete-header h1 {
  font-size: clamp(1.5rem, 1.25rem + 1vw, 2rem);
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
  margin-block-end: 0.5rem;
}
.page-complete .complete-icon {
  inline-size: 5rem;
  block-size: 5rem;
  margin-inline: auto;
  margin-block-end: 1.5rem;
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
  border-radius: 50%;
  display: grid;
  place-items: center;
  animation: checkmark-pop 0.5s ease-out;
}
.page-complete .complete-icon .checkmark {
  font-size: 2.5rem;
  color: white;
  font-weight: bold;
  line-height: 1;
}
@media (width < 768px) {
  .page-complete .complete-icon {
    inline-size: 4rem;
    block-size: 4rem;
  }
  .page-complete .complete-icon .checkmark {
    font-size: 2rem;
  }
}
@keyframes checkmark-pop {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.page-complete .order-number-display {
  font-size: 1.125rem;
  color: var(--text-primary);
  margin-block-end: 0.5rem;
}
.page-complete .order-number-display strong {
  font-family: "Courier New", monospace;
  font-size: 1.25rem;
  color: var(--vedett-blue);
  letter-spacing: 0.05em;
}
.page-complete .order-note {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin: 0;
}
.page-complete .payment-result {
  margin-block-end: 2rem;
}
.page-complete .result-box {
  border-radius: 0.75rem;
  padding: 1.875rem;
}
.page-complete .result-box h2 {
  font-size: clamp(1.25rem, 1.125rem + 0.5vw, 1.5rem);
  font-weight: var(--font-weight-bold);
  margin-block-end: 1rem;
}
.page-complete .result-box p {
  font-size: 1rem;
  line-height: 1.7;
  margin-block-end: 0.75rem;
  text-wrap: pretty;
}
.page-complete .result-box p:last-child {
  margin-block-end: 0;
}
.page-complete .result-box.success {
  background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
  border: 2px solid #28a745;
}
.page-complete .result-box.success h2 {
  color: #155724;
}
.page-complete .result-box.success p {
  color: #155724;
}
.page-complete .result-box.info {
  background: linear-gradient(135deg, #cce5ff 0%, #b8daff 100%);
  border: 2px solid #007bff;
}
.page-complete .result-box.info h2 {
  color: #004085;
}
.page-complete .result-box.info p {
  color: #004085;
}
.page-complete .result-box.warning {
  background: linear-gradient(135deg, #fff3cd 0%, #ffeeba 100%);
  border: 2px solid #ffc107;
}
.page-complete .result-box.warning h2 {
  color: #856404;
}
.page-complete .result-box.warning p {
  color: #856404;
}
.page-complete .bank-info-box {
  background: white;
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin-block: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.page-complete .bank-info-box .bank-details {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5rem 1rem;
  margin-block-end: 1.5rem;
}
.page-complete .bank-info-box .bank-details dt {
  font-weight: var(--font-weight-medium);
  color: var(--text-secondary);
  font-size: 0.875rem;
}
.page-complete .bank-info-box .bank-details dd {
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
  font-size: 1rem;
  margin: 0;
}
.page-complete .bank-info-box .transfer-amount {
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 2px solid var(--vedett-red);
}
.page-complete .bank-info-box .transfer-amount .label {
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
}
.page-complete .bank-info-box .transfer-amount .amount {
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--vedett-red);
}
.page-complete .bank-notes,
.page-complete .cod-notes {
  background: #fffbeb;
  border-inline-start: 4px solid #f59e0b;
  padding: 1rem;
  border-radius: 0 0.5rem 0.5rem 0;
  margin-block-start: 1rem;
}
.page-complete .bank-notes ul,
.page-complete .cod-notes ul {
  margin: 0;
  padding-inline-start: 1.25rem;
}
.page-complete .bank-notes ul li,
.page-complete .cod-notes ul li {
  color: #92400e;
  font-size: 0.875rem;
  line-height: 1.7;
  margin-block-end: 0.5rem;
  text-wrap: pretty;
}
.page-complete .bank-notes ul li:last-child,
.page-complete .cod-notes ul li:last-child {
  margin-block-end: 0;
}
.page-complete .cod-info-box {
  background: white;
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin-block: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.page-complete .cod-price-breakdown .price-row {
  display: flex;
  justify-content: space-between;
  padding-block: 0.75rem;
  border-block-end: 1px solid #e9ecef;
}
.page-complete .cod-price-breakdown .price-row .label {
  color: var(--text-secondary);
}
.page-complete .cod-price-breakdown .price-row .value {
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
}
.page-complete .cod-price-breakdown .price-row.fee .label, .page-complete .cod-price-breakdown .price-row.fee .value {
  color: var(--vedett-orange);
}
.page-complete .cod-price-breakdown .price-row.total {
  border-block-end: none;
  border-block-start: 2px solid var(--text-primary);
  margin-block-start: 0.5rem;
  padding-block-start: 1rem;
}
.page-complete .cod-price-breakdown .price-row.total .label {
  font-size: 1.125rem;
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
}
.page-complete .cod-price-breakdown .price-row.total .value {
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--vedett-red);
}
.page-complete .order-summary-section {
  background: white;
  border-radius: 0.75rem;
  padding: 1.875rem;
  margin-block-end: 1.5rem;
  box-shadow: var(--shadow-base);
}
.page-complete .order-summary-section h3 {
  font-size: 1.125rem;
  font-weight: var(--font-weight-bold);
  color: var(--vedett-blue);
  margin-block-end: 1.25rem;
  padding-block-end: 0.75rem;
  border-block-end: 2px solid var(--vedett-blue);
}
.page-complete .summary-box {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  margin-block-end: 1.5rem;
  padding-block-end: 1.5rem;
  border-block-end: 1px solid #e9ecef;
}
@media (width < 481px) {
  .page-complete .summary-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.page-complete .design-thumbnail {
  flex-shrink: 0;
}
.page-complete .design-thumbnail img {
  inline-size: 8rem;
  block-size: auto;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
@media (width < 481px) {
  .page-complete .design-thumbnail img {
    inline-size: 10rem;
  }
}
.page-complete .order-details {
  flex: 1;
}
.page-complete .order-details p {
  margin-block-end: 0.5rem;
  font-size: 1rem;
  color: var(--text-primary);
}
.page-complete .order-details p strong {
  font-weight: var(--font-weight-bold);
}
.page-complete .order-details p.price {
  font-size: 1.25rem;
  font-weight: var(--font-weight-bold);
  color: var(--vedett-red);
  margin-block-start: 0.75rem;
}
.page-complete .shipping-info h4 {
  font-size: 1rem;
  font-weight: var(--font-weight-bold);
  color: var(--text-secondary);
  margin-block-end: 0.75rem;
}
.page-complete .shipping-info p {
  font-size: 1rem;
  color: var(--text-primary);
  margin-block-end: 0.25rem;
  line-height: 1.6;
}
.page-complete .email-notice {
  background: #e3f2fd;
  border-radius: 0.75rem;
  padding: 1.25rem 1.5rem;
  margin-block-end: 1.5rem;
  border-inline-start: 4px solid var(--vedett-blue);
}
.page-complete .email-notice p {
  margin: 0;
  font-size: 0.9375rem;
  color: #0d47a1;
}
.page-complete .email-notice p strong {
  color: var(--vedett-blue);
}
.page-complete .email-notice p.small {
  font-size: 0.8125rem;
  color: #1976d2;
  margin-block-start: 0.5rem;
}
.page-complete .next-steps {
  background: white;
  border-radius: 0.75rem;
  padding: 1.875rem;
  margin-block-end: 1.5rem;
  box-shadow: var(--shadow-base);
}
.page-complete .next-steps h3 {
  font-size: 1.125rem;
  font-weight: var(--font-weight-bold);
  color: var(--vedett-blue);
  margin-block-end: 1.5rem;
  padding-block-end: 0.75rem;
  border-block-end: 2px solid var(--vedett-blue);
}
.page-complete .steps-timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
@media (width >= 768px) {
  .page-complete .steps-timeline {
    flex-direction: row;
    justify-content: space-between;
  }
}
.page-complete .step {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-block: 1rem;
  position: relative;
}
@media (width >= 768px) {
  .page-complete .step {
    flex-direction: column;
    text-align: center;
    flex: 1;
    padding-block: 0;
  }
  .page-complete .step:not(:last-child)::after {
    content: "";
    position: absolute;
    inset-block-start: 1.25rem;
    inset-inline-start: calc(50% + 1.5rem);
    inline-size: calc(100% - 3rem);
    block-size: 2px;
    background: #e0e0e0;
  }
}
@media (width < 768px) {
  .page-complete .step:not(:last-child)::after {
    content: "";
    position: absolute;
    inset-inline-start: 1.1875rem;
    inset-block-start: 3rem;
    inline-size: 2px;
    block-size: calc(100% - 1.5rem);
    background: #e0e0e0;
  }
}
.page-complete .step .step-icon {
  flex-shrink: 0;
  inline-size: 2.5rem;
  block-size: 2.5rem;
  border-radius: 50%;
  background: #e0e0e0;
  color: var(--text-secondary);
  display: grid;
  place-items: center;
  font-weight: var(--font-weight-bold);
  font-size: 1rem;
  position: relative;
  z-index: 1;
}
.page-complete .step .step-text {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-weight: var(--font-weight-medium);
}
.page-complete .step.completed .step-icon {
  background: var(--vedett-blue);
  color: white;
}
.page-complete .step.completed .step-text {
  color: var(--text-primary);
  font-weight: var(--font-weight-bold);
}
@media (width >= 768px) {
  .page-complete .step.completed::after {
    background: var(--vedett-blue);
  }
}
@media (width < 768px) {
  .page-complete .step.completed::after {
    background: var(--vedett-blue);
  }
}
.page-complete .contact-info {
  background: #f8f9fa;
  border-radius: 0.75rem;
  padding: 1.875rem;
  margin-block-end: 1.5rem;
}
.page-complete .contact-info h3 {
  font-size: 1.125rem;
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
  margin-block-end: 1rem;
}
.page-complete .contact-info p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  margin-block-end: 0.75rem;
  line-height: 1.7;
}
.page-complete .contact-info p strong {
  color: var(--text-primary);
}
.page-complete .contact-info p small {
  font-size: 0.8125rem;
  color: var(--text-secondary);
}
.page-complete .button-group {
  margin-block-start: 2rem;
  text-align: center;
}
.page-complete .button-group .btn-custom {
  display: inline-block;
  text-decoration: none;
}
.page-complete .button-group .btn-custom.btn-primary {
  background: var(--vedett-blue);
  color: white;
  padding-block: 1rem;
  padding-inline: 3rem;
  font-size: 1.125rem;
  font-weight: var(--font-weight-bold);
  border-radius: 0.5rem;
  transition: var(--transition-base);
}
.page-complete .button-group .btn-custom.btn-primary:hover {
  background: color-mix(in srgb, var(--vedett-blue) 85%, black);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 145, 255, 0.3);
}
@media (width < 768px) {
  .page-complete .complete-container {
    padding: 1rem;
    margin-block: 1.5rem;
  }
  .page-complete .result-box,
  .page-complete .order-summary-section,
  .page-complete .next-steps,
  .page-complete .contact-info {
    padding: 1.25rem;
  }
  .page-complete .bank-info-box,
  .page-complete .cod-info-box {
    padding: 1rem;
  }
  .page-complete .bank-details {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
  .page-complete .bank-details dt {
    margin-block-start: 0.75rem;
  }
  .page-complete .bank-details dt:first-child {
    margin-block-start: 0;
  }
  .page-complete .transfer-amount {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

.page-story .story-01 {
  padding-block-start: 0;
  padding-block-end: 7em;
}
.page-story .story-01 .section-title {
  background-image: url("/assets/images/vedett/story-title.png");
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: center top;
  block-size: fit-content;
  aspect-ratio: 2160/1569;
  display: block;
  font-size: var(--font-size-base);
  padding-block-start: clamp(15em, 25.5vw, 20em);
}
.page-story .story-01 .section-title > div {
  position: absolute;
  top: 16%;
  left: -4%;
  transform: translate(50%, 50%);
}
.page-story .story-01 .section-title p {
  padding-inline: 3em;
  text-align: center;
  max-inline-size: 53%;
  margin-inline: auto;
  line-height: var(--line-height-relaxed);
  text-wrap: pretty;
}
@media (width < 992px) {
  .page-story .story-01 {
    padding-block-end: 4em;
  }
  .page-story .story-01 .section-title {
    background-image: none;
    background-color: #ffffff;
    width: 100%;
    border: 4px dotted var(--vedett-blue);
    border-radius: 0;
    padding-block-start: 0;
    padding-block-end: 0;
  }
  .page-story .story-01 .section-title::before {
    content: "";
    background-image: url("/assets/images/vedett/sp/title_sp.png");
    background-size: contain;
    background-position: center top;
    width: 70%;
    height: auto;
    display: flex;
    margin-inline: auto;
    aspect-ratio: 403/163;
    transform: translateY(-3em);
  }
  .page-story .story-01 .section-title::after {
    content: "";
    background-image: url("/assets/images/vedett/sp/back-01.png");
    background-size: contain;
    background-position: center bottom;
    display: flex;
    margin-inline: auto;
    aspect-ratio: 918/517;
  }
  .page-story .story-01 .section-title p {
    max-inline-size: 93%;
    padding-inline: 0.5rem;
    font-size: 0.88em;
    text-wrap: stable;
  }
  .page-story .story-01 .section-title p > br {
    display: none;
  }
}
.page-story .story-02 {
  padding-block: 5em;
  background-color: transparent;
  background-image: linear-gradient(90deg, rgba(188, 228, 247, 0.5490196078) 3px, transparent 3px), linear-gradient(rgba(188, 228, 247, 0.5490196078) 3px, transparent 3px);
  background-position: 10px 10px;
  background-size: 33px 33px;
}
.page-story .story-02 .section-title {
  background-image: url("/assets/images/vedett/story-mg.png");
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: center top;
  block-size: fit-content;
  aspect-ratio: 2953/2063;
  display: block;
  font-size: var(--font-size-base);
  padding-block-start: clamp(15em, 31.5vw, 24em);
  transform: translateY(-9em);
  padding-inline-start: 12rem;
}
.page-story .story-02 .section-title p {
  text-align: center;
  max-inline-size: 500px;
  margin-inline: auto;
  text-wrap: pretty;
}
.page-story .story-02 .section-title .text-lg {
  font-size: var(--font-size-2xl);
}
.page-story .story-02 .section-title strong {
  color: var(--vedett-red);
}
.page-story .story-02 .story-row {
  display: flex;
  align-items: center;
  padding-block-end: 6em;
  position: relative;
  isolation: isolate;
  overflow-x: clip;
  max-width: 100vw;
}
.page-story .story-02 .story-row .desc-box {
  position: relative;
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: center;
  aspect-ratio: 1104/1027;
  width: 60%;
  padding-block-start: clamp(12rem, 19vw, 17rem);
  padding-block-end: 0;
  padding-inline-start: clamp(12rem, 19vw, 17rem);
  padding-inline-end: 2rem;
}
.page-story .story-02 .story-row .desc-box::before {
  content: "";
  position: absolute;
  inline-size: 200px;
  block-size: 280px;
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: center top;
  z-index: 10;
}
.page-story .story-02 .story-row .desc-box h3 {
  position: relative;
  z-index: 1;
  font-size: var(--font-size-lg);
  font-weight: bold;
  color: #000;
  line-height: 1.5;
  transform: translate(5.5rem, -3rem) rotate(-2deg);
}
.page-story .story-02 .story-row .desc-box p {
  position: relative;
  z-index: 1;
  font-size: var(--font-size-base);
  line-height: 1.9;
  color: #000;
  text-wrap: pretty;
  margin: 0;
  max-inline-size: clamp(24rem, 20rem + 8vw, 28.125rem);
}
.page-story .story-02 .story-row .image-box {
  display: grid;
  place-content: center;
  position: relative;
  z-index: 0;
  transform: translateX(-3em);
  width: 40%;
}
.page-story .story-02 .story-row .image-box img {
  max-inline-size: 100%;
  block-size: auto;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
}
.page-story .story-02 .story-row[data-character=bear] .desc-box {
  background-image: url("/assets/images/vedett/bear-01.png");
}
.page-story .story-02 .story-row[data-character=bear] .desc-box::before {
  inset-block-start: 10em;
  inset-inline-end: -7.5em;
  background-image: url("/assets/images/vedett/bear-02.png");
}
.page-story .story-02 .story-row[data-character=bear] .desc-box h3 {
  transform: translate(clamp(2.5rem, 7.2vw, 7.5rem), clamp(-1.8rem, -1.4vw, -3rem)) rotate(-3deg);
}
.page-story .story-02 .story-row[data-character=bear] .image-box {
  z-index: 1;
  transform: translate(-3rem, 15rem);
}
.page-story .story-02 .story-row[data-character=seiuchi] .desc-box {
  background-image: url("/assets/images/vedett/seiuchi-01.png");
  padding-block-start: clamp(13rem, 30vw, 20rem);
  padding-inline-start: clamp(4rem, 12vw, 6rem);
  padding-inline-end: 2rem;
}
@media (width >= 992px) {
  .page-story .story-02 .story-row[data-character=seiuchi] .desc-box {
    order: 2;
  }
}
.page-story .story-02 .story-row[data-character=seiuchi] .desc-box h3 {
  transform: translate(3.5rem, -3.5rem) rotate(3deg);
}
.page-story .story-02 .story-row[data-character=seiuchi] .desc-box::before {
  inset-block-start: 4em;
  inset-inline-start: 0;
  background-image: url("/assets/images/vedett/seiuchi-02.png");
}
@media (width >= 992px) {
  .page-story .story-02 .story-row[data-character=seiuchi] .image-box {
    order: 1;
    z-index: 5;
    transform: translateX(5em);
  }
}
.page-story .story-02 .story-row[data-character=penguin] .desc-box {
  background-image: url("/assets/images/vedett/penguin-01.png");
  padding-block-start: clamp(12rem, 20vw, 18rem);
}
.page-story .story-02 .story-row[data-character=penguin] .desc-box h3 {
  transform: translate(clamp(4.5rem, 9.2vw, 7.5rem), clamp(-2.3rem, -1.4vw, -3rem)) rotate(-3deg);
}
.page-story .story-02 .story-row[data-character=penguin] .desc-box::before {
  inset-block-start: 10em;
  inset-inline-end: -7.5em;
  background-image: url("/assets/images/vedett/penguin-02.png");
}
.page-story .story-02 .story-row[data-character=penguin] .image-box {
  z-index: 1;
  transform: translate(-3rem, 15rem);
}
@media (width < 992px) {
  .page-story .story-02 .story-row {
    flex-direction: column;
    gap: 2em;
    padding-block-end: 4em;
  }
  .page-story .story-02 .story-row .desc-box {
    order: 1;
    width: 100%;
    aspect-ratio: auto;
    background-size: cover;
    background-position: center;
    padding: 3em 2em;
    min-block-size: auto;
    border-radius: 1em;
  }
  .page-story .story-02 .story-row .desc-box::before {
    inset-block-start: -5em;
    inset-inline-start: 70%;
    inset-inline-end: auto;
    transform: translateX(0);
    inline-size: 150px;
    block-size: 150px;
    z-index: 0;
  }
  .page-story .story-02 .story-row .desc-box h3 {
    transform: none;
    font-size: var(--font-size-base);
    text-align: center;
    margin-block-end: 1em;
  }
  .page-story .story-02 .story-row .desc-box p {
    max-inline-size: 100%;
    font-size: 0.95em;
    line-height: 1.8;
  }
  .page-story .story-02 .story-row .image-box {
    order: 2;
    width: 100%;
    transform: none;
    margin-inline: auto;
  }
  .page-story .story-02 .story-row .image-box img {
    max-inline-size: 100%;
  }
  .page-story .story-02 .story-row[data-character=bear] {
    margin-block-end: 2em;
    padding-block-end: 0;
  }
  .page-story .story-02 .story-row[data-character=bear] .desc-box {
    order: 1;
    padding: 4em 2em 2em;
    background-image: none;
    background-color: #ffffff;
    border: 4px dotted var(--vedett-blue);
    border-radius: 0;
  }
  .page-story .story-02 .story-row[data-character=bear] .desc-box::before {
    inset-block-start: -7em;
    opacity: 0.8;
  }
  .page-story .story-02 .story-row[data-character=bear] .desc-box h3 {
    inline-size: 280px;
    block-size: 55px;
    background-color: rgba(250, 236, 159, 0.81);
    transform: rotate(-3deg) translate(0, -5em);
    position: relative;
    padding: 1em;
    text-wrap: nowrap;
    font-size: var(--font-size-base);
    margin-block-end: -3em;
  }
  .page-story .story-02 .story-row[data-character=bear] .desc-box h3::before {
    content: "";
    background-image: url("/assets/images/vedett/sp/title-bear.png");
    background-repeat: no-repeat;
    background-size: contain;
    display: flex;
    aspect-ratio: 260/231;
    transform: rotate(3deg) translate(-3em, -7.5em);
    z-index: 0;
    position: absolute;
    width: 35vw;
    height: auto;
  }
  .page-story .story-02 .story-row[data-character=bear] .image-box {
    order: 2;
    z-index: 0;
    transform: none;
    margin-block-start: -2em;
  }
  .page-story .story-02 .story-row[data-character=seiuchi] {
    padding-block-start: 5em;
    margin-block-end: 1em;
  }
  .page-story .story-02 .story-row[data-character=seiuchi] .desc-box {
    order: 1;
    padding: 0 2em 2em;
    background-image: none;
    background-color: #ffffff;
    border: 4px dotted var(--vedett-orange);
    border-radius: 0;
  }
  .page-story .story-02 .story-row[data-character=seiuchi] .desc-box::before {
    inset-block-start: -3em;
    inset-inline-start: -3em;
    transform: rotate(-25deg);
    opacity: 0.8;
  }
  .page-story .story-02 .story-row[data-character=seiuchi] .desc-box h3 {
    inline-size: 280px;
    block-size: 55px;
    background-color: rgba(254, 226, 201, 0.81);
    transform: rotate(-3deg) translate(0, -2em);
    position: relative;
    padding: 1em;
    text-wrap: nowrap;
    font-size: var(--font-size-base);
    margin-block-end: 3em;
  }
  .page-story .story-02 .story-row[data-character=seiuchi] .desc-box h3::before {
    content: "";
    background-image: url("/assets/images/vedett/sp/title-seiuchi.png");
    background-repeat: no-repeat;
    background-size: contain;
    display: flex;
    aspect-ratio: 260/231;
    transform: rotate(0deg) translate(10em, 0.5em);
    z-index: 0;
    position: absolute;
    width: 35vw;
    height: auto;
  }
  .page-story .story-02 .story-row[data-character=seiuchi] .image-box {
    order: 2;
    z-index: 0;
    transform: none;
    margin-block-start: -2em;
  }
  .page-story .story-02 .story-row[data-character=penguin] {
    padding-block-start: 5em;
  }
  .page-story .story-02 .story-row[data-character=penguin] .desc-box {
    order: 1;
    padding: 4em 2em 2em;
    background-image: none;
    background-color: #ffffff;
    border: 4px dotted var(--vedett-red);
    border-radius: 0;
  }
  .page-story .story-02 .story-row[data-character=penguin] .desc-box::before {
    inset-block-start: -7em;
    opacity: 0.8;
  }
  .page-story .story-02 .story-row[data-character=penguin] .desc-box h3 {
    inline-size: 290px;
    block-size: 55px;
    background-color: rgba(250, 236, 159, 0.81);
    transform: rotate(-3deg) translate(0, -5em);
    position: relative;
    padding: 1em 0.5em;
    text-wrap: nowrap;
    font-size: var(--font-size-base);
    margin-block-end: -3em;
  }
  .page-story .story-02 .story-row[data-character=penguin] .desc-box h3::before {
    content: "";
    background-image: url("/assets/images/vedett/sp/title-penguin.png");
    background-repeat: no-repeat;
    background-size: contain;
    display: flex;
    aspect-ratio: 260/231;
    transform: rotate(3deg) translate(-3em, -7.5em);
    z-index: 0;
    position: absolute;
    width: 35vw;
    height: auto;
  }
  .page-story .story-02 .story-row[data-character=penguin] .image-box {
    order: 2;
    z-index: 0;
    transform: none;
    margin-block-start: -2em;
  }
}
@media (width < 992px) {
  .page-story .story-02 {
    margin-block-start: 10em;
    padding-block-end: 4em;
  }
  .page-story .story-02 .section-title {
    background-image: none;
    background-color: #ffffff;
    width: 100%;
    border: 4px dotted var(--vedett-red);
    border-radius: 0;
    padding-block-start: 0;
    padding-block-end: 0;
    padding-inline-start: 0;
  }
  .page-story .story-02 .section-title::before {
    content: "";
    background-image: url("/assets/images/vedett/sp/title-mg.png");
    background-size: contain;
    background-position: center top;
    background-repeat: no-repeat;
    width: 90%;
    height: auto;
    display: flex;
    margin-inline: auto;
    aspect-ratio: 696/593;
    transform: translateY(-7em);
    margin-block-end: -7em;
  }
  .page-story .story-02 .section-title::after {
    content: "";
    background-image: url("/assets/images/vedett/sp/back-02.png");
    background-size: contain;
    background-position: center bottom;
    display: flex;
    margin-inline: auto;
    aspect-ratio: 1060/586;
  }
  .page-story .story-02 .section-title p {
    max-inline-size: 95%;
    padding-inline: 0.5rem;
    font-size: 0.88em;
    text-wrap: stable;
  }
  .page-story .story-02 .section-title p > br {
    display: none;
  }
  .page-story .story-02 .section-title p.text-lg {
    max-width: 100%;
    font-size: 1.65rem;
    letter-spacing: normal;
    text-align: center;
    padding-inline-start: 1em;
  }
}

.page-term {
  padding-block-start: 5rem;
  background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 100%);
  min-block-size: 100vh;
  min-block-size: 100dvh;
}
.page-term h2 {
  font-size: var(--font-size-lg);
}
@media (width >= 768px) {
  .page-term h2 {
    word-break: normal;
  }
}
.page-term .term-container {
  max-inline-size: 70rem;
  margin-inline: auto;
  padding-inline: 1.25rem;
  margin-block-start: 5em;
}
@media (width < 768px) {
  .page-term .term-container {
    padding-inline: 0.5rem;
    margin-block: 3em;
    max-inline-size: 80rem;
  }
}
.page-term .term-header {
  text-align: center;
  margin-block-end: var(--spacing-lg);
}
.page-term .term-title {
  font-size: clamp(1.5rem, 1.25rem + 1vw, 2rem);
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
  margin-block-end: 0.5em;
}
.page-term .term-lead {
  font-size: var(--font-size-base);
  color: var(--text-secondary);
  margin-block-end: 0;
}
.page-term .term-content {
  background-color: var(--bg-white);
  border-radius: var(--border-radius-base);
  box-shadow: var(--shadow-base);
  padding: var(--spacing-sm);
  margin-block-end: var(--spacing-lg);
}
@media (width >= 768px) {
  .page-term .term-content {
    padding: var(--spacing-lg);
  }
}
.page-term .term-section {
  padding-block-end: var(--spacing-md);
  margin-block-end: var(--spacing-md);
  border-block-end: 1px solid var(--text-light);
}
.page-term .term-section:last-child {
  padding-block-end: 0;
  margin-block-end: 0;
  border-block-end: none;
}
.page-term .term-section--warning {
  background-color: rgba(245, 148, 29, 0.1);
  border: 2px solid var(--vedett-orange);
  border-radius: var(--border-radius-base);
  padding: var(--spacing-md);
  margin-block-end: var(--spacing-md);
}
.page-term .term-section--highlight {
  background-color: var(--bg-light);
  border-radius: var(--border-radius-base);
  padding: var(--spacing-md);
}
@media (width >= 768px) {
  .page-term .term-section--highlight {
    padding: var(--spacing-lg);
  }
}
.page-term .term-section__title {
  display: flex;
  align-items: center;
  gap: 0.25em;
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-medium);
  color: var(--text-primary);
  margin-block-end: var(--spacing-sm);
  overflow-wrap: anywhere;
}
@media (width < 576px) {
  .page-term .term-section__title {
    font-size: calc(var(--font-size-xl) * 0.9);
  }
}
.page-term .term-section__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  inline-size: 1.6em;
  block-size: 1.6em;
  font-size: 0.75em;
  background-color: var(--vedett-blue);
  color: var(--bg-white);
  border-radius: 50%;
}
.page-term .term-section__icon--warning {
  background-color: var(--vedett-orange);
  font-weight: var(--font-weight-bold);
}
.page-term .term-section__icon--highlight {
  background-color: var(--vedett-darkblue);
}
.page-term .term-warning-text {
  margin: 0;
  color: var(--vedett-orange);
}
.page-term .term-warning-text strong {
  display: block;
  font-size: var(--font-size-lg);
  margin-block-end: 0.25em;
}
.page-term .term-rules {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-sm);
  margin-block: var(--spacing-sm);
}
@media (width >= 768px) {
  .page-term .term-rules {
    grid-template-columns: repeat(2, 1fr);
  }
}
.page-term .term-rules__item {
  padding: var(--spacing-sm);
  border-radius: var(--border-radius-base);
}
.page-term .term-rules__item--ok {
  background-color: rgba(46, 125, 50, 0.1);
  border: 1px solid rgba(46, 125, 50, 0.3);
}
.page-term .term-rules__item--ok .term-rules__title {
  color: #2e7d32;
}
.page-term .term-rules__item--ok .term-rules__title::before {
  content: "✓ ";
}
.page-term .term-rules__item--ok li::marker {
  color: #2e7d32;
}
.page-term .term-rules__item--ng {
  background-color: rgba(198, 40, 40, 0.1);
  border: 1px solid rgba(198, 40, 40, 0.3);
}
.page-term .term-rules__item--ng .term-rules__title {
  color: #c62828;
}
.page-term .term-rules__item--ng .term-rules__title::before {
  content: "✗ ";
}
.page-term .term-rules__item--ng li::marker {
  color: #c62828;
}
.page-term .term-rules__title {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-bold);
  margin-block-end: 0.5em;
}
.page-term .term-list {
  margin: 0;
  padding-inline-start: 1.25em;
}
.page-term .term-list li {
  margin-block-end: 0.25em;
}
.page-term .term-list li:last-child {
  margin-block-end: 0;
}
.page-term .term-list--spaced li {
  margin-block-end: 0.5em;
}
.page-term .term-notice {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  padding: var(--spacing-sm);
  background-color: var(--bg-light);
  border-radius: var(--border-radius-base);
  border-inline-start: 3px solid var(--text-light);
  margin-block-start: var(--spacing-sm);
}
.page-term .term-notice p {
  margin-block-end: 0.5em;
  text-wrap: pretty;
}
.page-term .term-notice p:last-child {
  margin-block-end: 0;
}
.page-term .term-agreement {
  background-color: var(--bg-white);
  border: 2px solid var(--vedett-blue);
  border-radius: var(--border-radius-base);
  padding: var(--spacing-sm);
}
@media (width >= 768px) {
  .page-term .term-agreement {
    padding: var(--spacing-md);
  }
}
.page-term .term-agreement p {
  margin-block-end: var(--spacing-sm);
  text-wrap: pretty;
  line-height: 1.8;
}
.page-term .term-agreement p:last-child {
  margin-block-end: 0;
}
.page-term .term-form {
  background-color: var(--bg-white);
  border-radius: var(--border-radius-base);
  box-shadow: var(--shadow-base);
  padding: var(--spacing-md);
}
@media (width >= 768px) {
  .page-term .term-form {
    padding: var(--spacing-lg);
  }
}
.page-term .term-checkbox-group {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  margin-block-end: var(--spacing-lg);
}
.page-term .term-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.5em;
  cursor: pointer;
  user-select: none;
}
.page-term .term-checkbox input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.page-term .term-checkbox input:focus-visible + .term-checkbox__box {
  outline: 2px solid var(--vedett-blue);
  outline-offset: 2px;
}
.page-term .term-checkbox input:checked + .term-checkbox__box {
  background-color: var(--vedett-blue);
  border-color: var(--vedett-blue);
}
.page-term .term-checkbox input:checked + .term-checkbox__box::after {
  opacity: 1;
  transform: scale(1);
}
.page-term .term-checkbox__box {
  position: relative;
  flex-shrink: 0;
  inline-size: 1.5em;
  block-size: 1.5em;
  margin-block-start: 0.15em;
  background-color: var(--bg-white);
  border: 2px solid var(--text-light);
  border-radius: 0.25em;
  transition: var(--transition-base);
}
.page-term .term-checkbox__box::after {
  content: "✓";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-white);
  font-size: 0.9em;
  font-weight: var(--font-weight-bold);
  opacity: 0;
  transform: scale(0.5);
  transition: var(--transition-base);
}
.page-term .term-checkbox__text {
  font-size: var(--font-size-base);
  line-height: 1.5;
}
.page-term .term-actions {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}
@media (width >= 768px) {
  .page-term .term-actions {
    flex-direction: row;
    justify-content: center;
  }
}
.page-term .term-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding-block: var(--spacing-sm);
  padding-inline: var(--spacing-lg);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-bold);
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--border-radius-base);
  cursor: pointer;
  transition: var(--transition-base);
}
.page-term .term-btn:focus-visible {
  outline: 2px solid var(--vedett-blue);
  outline-offset: 2px;
}
.page-term .term-btn--back {
  background-color: var(--bg-white);
  border-color: var(--text-light);
  color: var(--text-secondary);
}
.page-term .term-btn--back::before {
  content: "←";
}
.page-term .term-btn--back:hover {
  border-color: var(--text-secondary);
  color: var(--text-primary);
}
@media (width < 768px) {
  .page-term .term-btn--back {
    order: 2;
  }
}
.page-term .term-btn--submit {
  background-color: var(--vedett-blue);
  border-color: var(--vedett-blue);
  color: var(--bg-white);
}
.page-term .term-btn--submit::after {
  content: "→";
}
.page-term .term-btn--submit:hover:not(:disabled) {
  background-color: var(--vedett-darkblue);
  border-color: var(--vedett-darkblue);
  transform: translateY(-2px);
  box-shadow: var(--shadow-base);
}
.page-term .term-btn--submit:disabled {
  background-color: var(--text-light);
  border-color: var(--text-light);
  color: var(--text-secondary);
  cursor: not-allowed;
}
.page-term .term-btn--submit:disabled::after {
  content: none;
}
@media (width < 768px) {
  .page-term .term-btn--submit {
    order: 1;
  }
}
.page-term .term-footer {
  text-align: center;
  padding-block-start: var(--spacing-sm);
}
.page-term .term-footer p {
  margin: 0;
}
.page-term .term-footer a {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
}
.page-term .term-footer a:hover {
  color: var(--vedett-orange);
}
.page-term a {
  color: var(--vedett-blue);
  text-decoration: underline;
  text-underline-offset: 0.15em;
  transition: var(--transition-base);
}
.page-term a:hover, .page-term a:focus-visible {
  color: var(--vedett-darkblue);
}
.page-term a:focus-visible {
  outline: 2px solid var(--vedett-blue);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .page-term *,
  .page-term *::before,
  .page-term *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
.page-terms {
  padding-block-start: 5rem;
  background-color: var(--bg-light);
  min-block-size: 100vh;
  min-block-size: 100dvh;
}
.page-terms .terms-container {
  max-inline-size: 56.25rem;
  margin-inline: auto;
  padding-inline: 1.25rem;
}
.page-terms .terms-header {
  text-align: center;
  margin-block-end: var(--spacing-lg);
  padding-block-end: var(--spacing-md);
  border-block-end: 1px solid var(--text-light);
}
.page-terms .terms-title {
  font-size: clamp(1.5rem, 1.25rem + 1vw, 2rem);
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
  margin-block-end: 0.5em;
}
.page-terms .terms-lead {
  font-size: var(--font-size-lg);
  color: var(--text-secondary);
  margin-block-end: 0;
}
.page-terms .terms-nav {
  background-color: var(--bg-white);
  border-radius: var(--border-radius-base);
  padding: var(--spacing-md);
  margin-block-end: var(--spacing-lg);
  box-shadow: var(--shadow-base);
}
.page-terms .terms-nav__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em 1em;
  justify-content: center;
}
.page-terms .terms-nav__list a {
  display: inline-flex;
  align-items: center;
  gap: 0.25em;
  padding: 0.5em 1em;
  background-color: var(--bg-light);
  border: 1px solid var(--text-light);
  border-radius: var(--border-radius-base);
  text-decoration: none;
  font-weight: var(--font-weight-medium);
  color: var(--text-primary);
  transition: var(--transition-base);
}
.page-terms .terms-nav__list a::before {
  content: "→";
  color: var(--vedett-blue);
}
.page-terms .terms-nav__list a:hover, .page-terms .terms-nav__list a:focus-visible {
  background-color: var(--vedett-blue);
  border-color: var(--vedett-blue);
  color: var(--bg-white);
}
.page-terms .terms-nav__list a:hover::before, .page-terms .terms-nav__list a:focus-visible::before {
  color: var(--bg-white);
}
.page-terms .terms-nav__list a:focus-visible {
  outline: 2px solid var(--vedett-orange);
  outline-offset: 2px;
}
@media (width < 576px) {
  .page-terms .terms-nav__list {
    flex-direction: column;
  }
  .page-terms .terms-nav__list a {
    justify-content: center;
  }
}
.page-terms .terms-section {
  background-color: var(--bg-white);
  border-radius: var(--border-radius-base);
  box-shadow: var(--shadow-base);
  padding: var(--spacing-md);
  margin-block-end: var(--spacing-lg);
  scroll-margin-block-start: 6rem;
}
@media (width >= 768px) {
  .page-terms .terms-section {
    padding: var(--spacing-lg);
  }
}
.page-terms .terms-section:focus {
  outline: none;
}
.page-terms .terms-section:last-of-type {
  margin-block-end: 0;
}
.page-terms .terms-section__title {
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
  margin-block-end: var(--spacing-md);
  padding-block-end: 0.5em;
  border-block-end: 3px solid var(--vedett-blue);
}
@media (width < 576px) {
  .page-terms .terms-section__title {
    font-size: var(--font-size-lg);
  }
}
.page-terms .terms-section__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  inline-size: 1.5em;
  block-size: 1.5em;
  font-size: 0.8em;
  background-color: var(--vedett-blue);
  color: var(--bg-white);
  border-radius: 0.25em;
}
.page-terms .terms-intro {
  font-size: var(--font-size-base);
  color: var(--text-secondary);
  margin-block-end: var(--spacing-md);
  text-wrap: pretty;
}
.page-terms .terms-article {
  margin-block-end: var(--spacing-md);
}
.page-terms .terms-article:last-child {
  margin-block-end: 0;
}
.page-terms .terms-article__title {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
  margin-block-end: 0.75em;
}
.page-terms .terms-article__title:where(:not(:first-child)) {
  margin-block-start: var(--spacing-md);
}
.page-terms .terms-article--consent {
  background-color: var(--bg-light);
  padding: var(--spacing-md);
  border-radius: var(--border-radius-base);
  border: 1px solid var(--text-light);
}
.page-terms .terms-subsection {
  margin-block: var(--spacing-md);
  padding-inline-start: 1em;
  border-inline-start: 3px solid var(--vedett-orange);
}
.page-terms .terms-subsection__title {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-bold);
  color: var(--vedett-orange);
  margin-block-end: 0.5em;
}
.page-terms .terms-dl {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 0.5em 1em;
  margin: 0;
  padding: var(--spacing-sm);
  background-color: var(--bg-light);
  border-radius: var(--border-radius-base);
}
.page-terms .terms-dl dt {
  font-weight: var(--font-weight-bold);
  color: var(--text-secondary);
}
.page-terms .terms-dl dt::after {
  content: "：";
}
.page-terms .terms-dl dd {
  margin: 0;
}
@media (width < 576px) {
  .page-terms .terms-dl {
    grid-template-columns: 1fr;
    gap: 0.25em;
  }
  .page-terms .terms-dl dt::after {
    content: none;
  }
  .page-terms .terms-dl dd {
    padding-block-end: 0.5em;
    border-block-end: 1px dotted var(--text-light);
  }
  .page-terms .terms-dl dd:last-of-type {
    border: none;
    padding-block-end: 0;
  }
}
.page-terms .terms-list {
  margin: 0;
  padding-inline-start: 1.5em;
}
.page-terms .terms-list li {
  margin-block-end: 0.5em;
}
.page-terms .terms-list li:last-child {
  margin-block-end: 0;
}
.page-terms .terms-list li::marker {
  color: var(--vedett-blue);
}
.page-terms .terms-table {
  inline-size: 100%;
  border-collapse: collapse;
  margin-block: var(--spacing-sm);
  font-size: var(--font-size-sm);
}
.page-terms .terms-table caption {
  caption-side: top;
  text-align: start;
  font-weight: var(--font-weight-bold);
  color: var(--text-secondary);
  padding-block-end: 0.5em;
}
.page-terms .terms-table th,
.page-terms .terms-table td {
  padding: 0.5em 1em;
  text-align: start;
  border: 1px solid var(--text-light);
}
.page-terms .terms-table th {
  background-color: var(--vedett-blue);
  color: var(--bg-white);
  font-weight: var(--font-weight-bold);
}
.page-terms .terms-table tbody tr:nth-child(even) {
  background-color: var(--bg-light);
}
@media (width < 576px) {
  .page-terms .terms-table {
    font-size: 0.8em;
  }
  .page-terms .terms-table th,
  .page-terms .terms-table td {
    padding: 0.25em 0.5em;
  }
}
.page-terms .terms-table--shipping td:not(:first-child) {
  text-align: end;
  font-weight: var(--font-weight-medium);
}
.page-terms .terms-bank-info {
  background-color: var(--bg-white);
  border: 2px solid var(--vedett-blue);
  border-radius: var(--border-radius-base);
  padding: var(--spacing-sm);
  margin-block-start: var(--spacing-sm);
}
.page-terms .terms-bank-info p {
  margin: 0;
}
.page-terms .terms-bank-info p:first-child {
  margin-block-end: 0.5em;
  color: var(--vedett-blue);
  font-weight: var(--font-weight-bold);
}
.page-terms .terms-notice {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  padding: var(--spacing-sm);
  background-color: var(--bg-light);
  border-radius: var(--border-radius-base);
  border-inline-start: 4px solid var(--text-light);
  margin-block: var(--spacing-sm);
  text-wrap: pretty;
}
.page-terms .terms-warning {
  padding: var(--spacing-sm);
  background-color: rgba(245, 148, 29, 0.1);
  border-radius: var(--border-radius-base);
  border-inline-start: 4px solid var(--vedett-orange);
  color: var(--vedett-orange);
}
.page-terms .terms-warning strong {
  display: block;
  font-size: var(--font-size-lg);
  margin-block-end: 0.25em;
}
.page-terms .terms-highlight {
  padding: var(--spacing-sm);
  background-color: rgba(51, 201, 255, 0.1);
  border-radius: var(--border-radius-base);
  color: var(--vedett-darkblue);
  font-weight: var(--font-weight-bold);
  text-align: center;
  margin-block: var(--spacing-sm);
}
.page-terms .terms-rules {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: var(--spacing-sm);
  margin-block: var(--spacing-md);
}
.page-terms .terms-rules__item {
  padding: var(--spacing-sm);
  border-radius: var(--border-radius-base);
}
.page-terms .terms-rules__item--ok {
  background-color: rgba(46, 125, 50, 0.1);
  border: 1px solid rgba(46, 125, 50, 0.3);
}
.page-terms .terms-rules__item--ok .terms-rules__title {
  color: #2e7d32;
}
.page-terms .terms-rules__item--ok .terms-rules__title::before {
  content: "✓ ";
}
.page-terms .terms-rules__item--ok li::marker {
  color: #2e7d32;
}
.page-terms .terms-rules__item--ng {
  background-color: rgba(198, 40, 40, 0.1);
  border: 1px solid rgba(198, 40, 40, 0.3);
}
.page-terms .terms-rules__item--ng .terms-rules__title {
  color: #c62828;
}
.page-terms .terms-rules__item--ng .terms-rules__title::before {
  content: "✗ ";
}
.page-terms .terms-rules__item--ng li::marker {
  color: #c62828;
}
.page-terms .terms-rules__title {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-bold);
  margin-block-end: 0.5em;
}
.page-terms .terms-consent-box {
  background-color: var(--bg-white);
  border: 2px solid var(--vedett-blue);
  border-radius: var(--border-radius-base);
  padding: var(--spacing-md);
  margin-block: var(--spacing-sm);
}
.page-terms .terms-consent-box p {
  margin-block-end: var(--spacing-sm);
  text-wrap: pretty;
  line-height: 1.8;
}
.page-terms .terms-consent-box p:last-child {
  margin-block-end: 0;
}
.page-terms .terms-footer {
  text-align: center;
  padding-block-start: var(--spacing-lg);
  margin-block-start: var(--spacing-lg);
  border-block-start: 1px solid var(--text-light);
  color: var(--text-secondary);
  font-size: var(--font-size-sm);
}
.page-terms .terms-footer p {
  margin-block-end: 0.5em;
}
.page-terms .terms-footer p:last-child {
  margin-block-end: 0;
}
.page-terms .terms-footer__link {
  color: var(--text-secondary);
}
.page-terms .terms-footer__link:hover {
  color: var(--vedett-orange);
}
.page-terms .terms-footer__separator {
  margin-inline: 1em;
  color: var(--text-light);
}
.page-terms .terms-footer__company {
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
  margin-block-start: var(--spacing-sm);
}
.page-terms a {
  color: var(--vedett-blue);
  text-decoration: underline;
  text-underline-offset: 0.15em;
  transition: var(--transition-base);
}
.page-terms a:hover, .page-terms a:focus-visible {
  color: var(--vedett-darkblue);
}
.page-terms a:focus-visible {
  outline: 2px solid var(--vedett-orange);
  outline-offset: 2px;
}
@media print {
  .page-terms {
    padding-block: 0;
    background-color: var(--bg-white);
  }
  .page-terms .terms-nav {
    display: none;
  }
  .page-terms .terms-section {
    box-shadow: none;
    break-inside: avoid;
    page-break-inside: avoid;
  }
  .page-terms .terms-article {
    break-inside: avoid;
  }
  .page-terms a {
    text-decoration: none;
    color: inherit;
  }
  .page-terms a[href^=http]::after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
    color: var(--text-secondary);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-terms *,
  .page-terms *::before,
  .page-terms *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
.footer-link {
  list-style: none;
  padding: 0;
  margin-block: 0.25rem;
  font-size: var(--font-size-sm);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5em 1.5em;
}
.footer-link li.desktop {
  display: none;
}
@media (width >= 992px) {
  .footer-link li.desktop {
    display: list-item;
  }
}
.footer-link a {
  display: inline-block;
  font-size: var(--font-size-sm);
  color: var(--bg-white);
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: var(--transition-base);
}
.footer-link a:hover, .footer-link a:focus-visible {
  color: var(--vedett-orange);
  text-decoration-color: currentColor;
}
.footer-link a:focus-visible {
  outline: 2px solid var(--vedett-orange);
  outline-offset: 0.15em;
  border-radius: 0.125em;
}
@media (width < 768px) {
  .footer-link {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    align-items: center;
    gap: 0;
  }
  .footer-link > li {
    border-top: solid 1px rgba(255, 255, 255, 0.4392156863);
    width: 100%;
  }
  .footer-link > li:nth-child(even) {
    border-right: solid 1px rgba(255, 255, 255, 0.4392156863);
  }
  .footer-link > li:nth-last-child(-n+2) {
    border-bottom: solid 1px rgba(255, 255, 255, 0.4392156863);
  }
  .footer-link a {
    font-size: 0.8rem;
  }
}