/*
http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-family: 'SUITE', sans-serif;
  vertical-align: baseline;
  box-sizing: border-box;
  word-break: keep-all;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1.6;
  background-color: #fff4e7;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
img {
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
picture {
  display: block;
}
.main-content {
  padding: 0;
}
.container {
  width: 100%;
  margin: auto;
  max-width: 500px;
}
.container img {
  width: 100%;
}
.floating-buttons {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.floating-buttons .floating-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: white;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.floating-buttons .floating-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
.floating-buttons .floating-btn.cart {
  background: #ff6b6b;
  color: white;
}
.floating-buttons .floating-btn.heart {
  background: #ff8e8e;
  color: white;
}
.floating-buttons .floating-btn.up {
  background: #4ecdc4;
  color: white;
}
.floating-buttons .floating-btn.apply {
  background: #153087;
  color: white;
  width: 60px;
  height: 60px;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
.bottom-actions {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 500px;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(6px);
  z-index: 1000;
  padding: 20px 16px;
}
.bottom-actions .timer-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.bottom-actions .timer-section .empty {
  min-width: 52px;
  width: 52px;
}
.bottom-actions .timer-text {
  width: 100%;
  text-align: center;
  font-family: 'SUITE', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #153087;
  margin-bottom: 12px;
  letter-spacing: -0.56px;
  line-height: 1.2;
}
.bottom-actions .timer-text .time-numbers {
  font-weight: 800;
}
.bottom-actions .action-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}
.bottom-actions .action-buttons .main-button {
  flex: 1;
  background: #153087;
  color: white;
  border: none;
  border-radius: 48px;
  padding: 11px 8px;
  font-family: 'SUITE', sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}
.bottom-actions .action-buttons .main-button:hover {
  background: #0f2661;
  transform: translateY(-1px);
}
.bottom-actions .action-buttons .main-button:active {
  transform: translateY(0);
}
.bottom-actions .action-buttons .share-button {
  width: 54px;
  height: 54px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'SUITE', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: white;
  letter-spacing: -0.56px;
  line-height: 1.2;
  transition: all 0.3s ease;
  background-color: initial;
  border: 0;
  background-image: url('/assets/images/share-bg.png');
  background-size: 100%;
}
.bottom-actions .action-buttons .share-button:hover {
  transform: scale(1.05);
}
.bottom-actions .action-buttons .share-button:active {
  transform: scale(0.98);
}
.bottom-actions .action-buttons .floating-open {
  max-width: 72px;
  position: absolute;
  right: -6px;
  top: -124px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.bottom-actions .action-buttons .floating-open.visible {
  opacity: 1;
}
.bottom-actions .action-buttons .floating-open .kakao-btn {
  top: 16px;
}
.bottom-actions .action-buttons .floating-open .share-btn {
  top: 60px;
}
.bottom-actions .action-buttons .floating-open button {
  position: absolute;
  background: initial;
  border: 0;
  cursor: pointer;
  left: 18px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.floating-buttons {
  opacity: 0;
  transition: opacity 0.3s ease;
}
.floating-buttons.visible {
  opacity: 1;
}
.sticky-menu {
  position: sticky;
  top: 0;
  background: white;
  z-index: 100;
}
.sticky-menu .menu-tabs {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
}
.sticky-menu .menu-tabs .tab {
  flex: 1;
  padding: 12px 16px;
  background: transparent;
  border: none;
  font-family: 'SUITE', sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #08318c;
  text-align: center;
  letter-spacing: -0.64px;
  line-height: 1.248;
  border-top: 1px solid rgba(34, 34, 34, 0.1);
  border-bottom: 1px solid rgba(34, 34, 34, 0.1);
}
.sticky-menu .menu-tabs .tab.active {
  background: #041f5f;
  border-color: #041f5f;
  color: white;
}
.sticky-menu .menu-tabs .tab:not(.active):hover {
  background: rgba(21, 48, 135, 0.1);
}
.tab-section img {
  width: 100%;
  display: block;
}
#product {
  position: relative;
}
#product .tab-section {
  position: absolute;
  width: 100%;
  height: 20px;
  left: 0;
}
#product .participation {
  top: 4px;
}
#product .prizes {
  top: 17.5%;
}
#product .products {
  top: 80%;
}
#banner {
  position: relative;
}
#banner a {
  opacity: 0;
  position: absolute;
  width: 43%;
  height: 9%;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
}
#etc {
  padding-bottom: 120px;
}
#etc .share-section {
  display: flex;
  justify-content: space-between;
  background: initial;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 24px;
  text-align: center;
  align-items: center;
}
#etc .share-section h2 {
  font-family: 'SUITE', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #444;
  letter-spacing: -0.64px;
  margin-bottom: 0;
}
#etc .share-section .share-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
#etc .share-section .share-buttons .share-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}
#etc .share-section .share-buttons .share-btn:hover {
  transform: scale(1.05);
}
#etc .tetra-pack-section {
  background: white;
  padding: 32px 24px;
}
#etc .tetra-pack-section .tetra-pack-content {
  display: flex;
  align-items: center;
  gap: 24px;
}
#etc .tetra-pack-section .tetra-pack-content .tetra-pack-text {
  flex: 1;
}
#etc .tetra-pack-section .tetra-pack-content .tetra-pack-text h2 {
  font-family: 'SUITE', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #444;
  margin-bottom: 8px;
  letter-spacing: -0.64px;
  line-height: 1.4;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#etc .tetra-pack-section .tetra-pack-content .tetra-pack-text p {
  font-family: 'SUITE', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #444;
  letter-spacing: -0.56px;
  line-height: 1.4;
}
#etc .tetra-pack-section .tetra-pack-content .tetra-pack-logo {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
}
#etc .tetra-pack-section .tetra-pack-content .tetra-pack-logo .logo-placeholder {
  width: 100%;
  height: 100%;
  background: #f0f0f0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#etc .tetra-pack-section .tetra-pack-content .tetra-pack-logo .logo-placeholder span {
  font-family: 'SUITE', sans-serif;
  font-size: 8px;
  font-weight: 700;
  color: #888;
  text-align: center;
  line-height: 1.2;
}
#etc .notice-section {
  background: #f9f8fd;
  padding: 40px 24px 80px;
}
#etc .notice-section h2 {
  font-family: 'SUITE', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #444;
  margin-bottom: 16px;
  letter-spacing: -0.64px;
}
#etc .notice-section .notice-content ol {
  padding-left: 0;
}
#etc .notice-section .notice-content ol li {
  font-family: 'SUITE', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #444;
  letter-spacing: -0.56px;
  line-height: 1.4;
  margin-bottom: 8px;
  padding-left: 16px;
  position: relative;
}
#etc .notice-section .notice-content ol li:before {
  content: counter(item) '.';
  counter-increment: item;
  position: absolute;
  right: calc(100% - 8px);
  top: 0;
  font-weight: 700;
}
.notice-content ol {
  counter-reset: item;
}
