@import url('https://fonts.googleapis.com/css2?family=Spectral:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    background-image: url(../img/25aw_hero-section-bg.jpg);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    margin-bottom: -500px;
    z-index: 1;
}
.hero-section h1 {
    font-size: 4.5rem; /* より大きく */
    letter-spacing: 5px;
    font-weight: 300;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
    margin-bottom: 15px;
    font-family: "Spectral", serif;
    font-style: normal;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.2);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-text {
    color: #ffffff;
    padding-bottom: 60px;
}

.btn-hero {
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 10px 30px;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.btn-hero:hover {
    background-color: #ffffff;
    color: #000000;
    border-color: transparent;
}

.hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image {
    position: relative;
    z-index: 3;
    max-width: 400px;
    width: 100%;
    height: 530px;
    margin-bottom: -600px;
    object-fit: contain;
}
.brand-label {
    font-size: 0.9rem;
    letter-spacing: 3px;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    opacity: 0.9;
}

.jp-title {
    font-size: 1.5rem;
    letter-spacing: 4px;
    color: #ffffff;
    font-weight: 300;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    margin-bottom: 25px;
    font-family: "Spectral", serif;
}

.release-info {
    display: flex;
    gap: 20px;
    margin: 35px 0;
}

.release-date {
    font-family: "Spectral", serif;
    font-size: 1.8rem;
    letter-spacing: 2px;
    padding: 15px 30px;
    text-shadow: none;
}

.release-date.pre-release {
    background-color: #a2c79b;
    color: #ffffff;
}

.release-date.general-release {
    background-color: #ffffff;
    color: #a2c79b;
    border: 1px solid #a2c79b;
}

/* テキストのアニメーション */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text > * {
    animation: fadeInUp 0.8s ease forwards;
}

.hero-text > *:nth-child(1) { animation-delay: 0.2s; }
.hero-text > *:nth-child(2) { animation-delay: 0.4s; }
.hero-text > *:nth-child(3) { animation-delay: 0.6s; }
.hero-text > *:nth-child(4) { animation-delay: 0.8s; }

/* Intro Section */
.intro-section {
    background: #f9f9fb;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    z-index: 2;
    margin-top: 500px;
}

.intro-inner {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUpIntro 1s ease-out 0.3s forwards;
}

@keyframes fadeUpIntro {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.intro-label {
    font-size: 0.85rem;
    letter-spacing: 3px;
    color: #999;
    margin-bottom: 15px;
    text-transform: uppercase;
    animation: fadeUpIntro 1s ease-out 0.5s forwards;
}

.intro-heading {
    font-family: "Spectral", serif;
    font-size: 2.2rem;
    letter-spacing: 4px;
    margin-bottom: 30px;
    font-weight: 300;
    animation: fadeUpIntro 1s ease-out 0.7s forwards;
}

.intro-text {
    font-size: 1.1rem;
    color: #444;
    line-height: 3;
    animation: fadeUpIntro 1s ease-out 0.9s forwards;
}

/* Responsive */
@media (max-width: 767px) {
    .intro-heading {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }

    .intro-text {
        font-size: 1rem;
        padding: 0 10px;
    }

    .intro-section {
        padding: 70px 0;
    }
}
/* Collection Section */
.collection-section {
    position: relative;
    z-index: 0;
    padding: 50px 0;
    background-color: #ffffff;
    margin-top: 0;
    margin-bottom: 0;
}

.collection-subtitle {
    font-size: 0.9rem;
    letter-spacing: 3px;
    color: #666666;
    margin-bottom: 10px;
}
.collection-subtitle-2 {
    font-size: 1.4rem;
    letter-spacing: 2.5px;
    color: #666666;
    margin-bottom: 10px;
}

.collection-title {
    font-size: 2.5rem;
    letter-spacing: 5px;
    font-weight: 300;
    margin-bottom: 10px;
    font-family: "Spectral", serif;
    font-weight: 300;
    font-style: normal;
}

.collection-image {
    width: 100%;
    height: auto;
}

.collection-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.notes-title {
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 30px;
    font-weight: 500;
}

.notes-group {
    margin-bottom: 25px;
}

.notes-group h4 {
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: #666666;
    margin-bottom: 8px;
}

.notes-group p {
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.fragrance-concept h3 {
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-weight: 300;
}

.fragrance-concept p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.fragrance-images {
    margin-top: 30px;
    margin-bottom: 30px;
}

.fragrance-image {
    position: relative;
    width: 100%;
    padding-top: 75%; /* 4:3のアスペクト比 */
    overflow: hidden;
}

.fragrance-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
      border-radius: 8px;
}



/* ホバーエフェクト */
.fragrance-image:hover img {
    transform: scale(1.05);
}

/* スマートフォン対応 */
@media (max-width: 767px) {
    .fragrance-images {
        margin-top: 20px;
        margin-bottom: 20px;
    }
}

/* compare Section */
.fragrance-compare {
  margin: 150px 0;
}
.section-title {
    font-size: 2.5rem;
    letter-spacing: 5px;
    font-weight: 300;
    margin-bottom: 40px;
    text-align: center;
    font-family: "Spectral", serif;  
}

.section-lead {
  font-size: 1rem;
  color: #555;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}

.compare-box {
  position: relative;
  height: 700px;
  background-image: url('../img/25aw_fragrance-bloom.png'); 
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8%;
}

.compare-text {
  width: 45%;
  color: #434343;
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.4);
}

.compare-text h3 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.compare-text h3.blooming {
  color: #f0b4b3;
}

.compare-text h3.mystic {
  color: #b41d22;
}


.compare-text p {
  font-size: 1.4rem;
  line-height: 1.6;
}

.left {
  text-align: left;
}

.right {
  text-align: right;
}
@media screen and (max-width: 768px) {
  .compare-box {
    flex-direction: column;
    height: 800px;
    padding: 40px 5%;
    gap: 30px;
    background-position: top center;
  }

.compare-text {
  background: rgba(255, 255, 255, 0.5); /* 透け感を保つ */
  padding: 16px 20px;
  border-radius: 0; /* 角丸なし */
  backdrop-filter: blur(4px); /* 背景ぼかし効果で高級感 */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  border-left: 5px solid var(--keycolor);
}


  .compare-text h3 {
    font-size: 1.5rem;
  }

  .compare-text p {
    font-size: 0.95rem;
  }
}


/* Video Section */
.video-section {
    padding: 80px 0;
    margin-top: 100px;
    background-color: #ffffff;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9のアスペクト比 */
    height: 0;
    overflow: hidden;
    margin: 0 auto;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px; /* 角を少し丸く */
    box-shadow: 0 5px 15px rgba(0,0,0,0.1); /* 影をつけて浮かび上がらせる */
}

/* レスポンシブ対応 */
@media (max-width: 767px) {
    .video-section {
        padding: 30px 0;
    }
}
/* Story Section */
.story-section {
    position: relative;
    padding: 120px 0;
    background-image: url(../img/story-section-bg.jpg);
    background-size: 110% auto;
    background-position: center;
    background-attachment: fixed;
    color: #ffffff;
    transition: background-size 10s ease;
}

.story-section:hover {
    background-size: 100% auto;
}

.story-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.7) 50%, rgba(0,0,0,0.3));
}

.story-content {
    position: relative;
    z-index: 1;
}

.story-subtitle {
    font-size: 0.9rem;
    letter-spacing: 3px;
    margin-bottom: 15px;
    font-family: "Spectral", serif;
}

.story-title {
    font-size: 2.5rem;
    letter-spacing: 5px;
    font-weight: 300;
    margin-bottom: 40px;
    font-family: "Spectral", serif;
}

.story-text {
    font-size: 1.1rem;
    line-height: 2;
    letter-spacing: 1px;
}

/* Limited Edition Section */
.limited-section {
    padding: 120px 0;
    background-color: #f8f8f8;
}

.limited-label {
    font-size: 0.9rem;
    letter-spacing: 3px;
    color: #666666;
    margin-bottom: 15px;
}

.limited-title {
    font-size: 2.5rem;
    letter-spacing: 5px;
    font-weight: 300;
    margin-bottom: 40px;
    font-family: "Spectral", serif;    
}

.limited-text {
    font-size: 1.1rem;
    line-height: 1.8;
    letter-spacing: 1px;
}

.edition-info .info-item h3 {
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-weight: 400;
}

.edition-info .info-item p {
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.limited-note {
    font-size: 0.9rem;
    color: #666666;
}

.package-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.package-image {
    max-width: 100%;
    height: auto;
}

/* アニメーション効果 */
.package-image {
    transition: transform 0.8s ease;
}

.package-image:hover {
    transform: scale(1.05);
}

/* 購入ボタン */
.buy-button-container {
    margin-top: 30px;
}

.btn-buy {
    background-color: #000000;
    color: #ffffff;
    padding: 12px 40px;
    letter-spacing: 2px;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid #000000;
}

.btn-buy:hover {
    background-color: transparent;
    color: #000000;
}
.btn-buy2 {
    background-color: #000000;
    color: #ffffff;
    padding: 12px 40px;
    letter-spacing: 2px;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid #000000;
}

.btn-buy2:hover {
    background-color: #E7CFD1;
    color: #000000;
}
/* gallery */
.gallery-title {
  font-size: 26px;
  font-weight: bold;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
}

.gallery-title::before,
.gallery-title::after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 1px;
  background-color: #333;
  margin: 0 12px;
  vertical-align: middle;
}

.gallery-section {
  padding: 40px 20px;
  text-align: center;
}

.gallery-section h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* PC表示：3列 */
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
     transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery img:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* Brand Concept Section */
.brand-section {
    position: relative;
    padding: 0;
    /* より印象的なグラデーション */
    background: #f0f2f5;
    background: linear-gradient(315deg, #cbd3dc 0%, #e5e9ef 100%);
    overflow: hidden;
}

/* グラデーションと半透明の装飾要素を追加 */
.brand-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
         radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.9) 0%, transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.9) 0%, transparent 60%);
    pointer-events: none;
}

.brand-content {
    position: relative;
    padding: 100px 0;
    background: 
        linear-gradient(90deg, 
            rgba(222, 227, 232, 0.9) 0%, 
            rgba(203, 211, 220, 0.8) 50%,
            rgba(222, 227, 232, 0.9) 100%);
    backdrop-filter: blur(5px);
}

.brand-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9; 
    overflow: hidden;
}

.brand-image {
  width: 100%;
  height: 100%;
  object-fit: cover;         
  object-position: center;  
  display: block;
}

.brand-title {
    font-size: 1.8rem;
    letter-spacing: 5px;
    font-weight: 300;
    margin-bottom: 60px;
    position: relative;
    font-family: "Spectral", serif;   
}

.brand-title:after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background-color: #000000;
}


/* スマホ対応 */
@media screen and (max-width: 768px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr); /* スマホ表示：2列 */
  }
}


/* テキスト部分にも微細なグラデーション効果を追加 */
.brand-text {
    font-size: 1.2rem;
    line-height: 2;
    letter-spacing: 2px;
    padding: 25px;
/*    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0.7) 0%,
        rgba(255, 255, 255, 0.3) 100%);*/
    border-radius: 5px;
}

.brand-tagline {
    font-size: 1.4rem;
    margin-top: 3rem;
    letter-spacing: 3px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.8) 50%, transparent 100%);
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px; /* テキストとロゴの間隔 */
}
.brand-logo {
    height: 24px; /* フォントサイズ1.4remに合わせて設定 */
    width: auto;
    vertical-align: middle;
    margin-top: -2px; /* 微調整用 */
}

.brand-text p {
    margin-bottom: 1.5rem;
}


/* プロダクトカード */
.products-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.product-card {
    position: relative;
    width: 100%;
    max-width: 320px; /* カードの最大幅を制限 */
    margin: 0 auto 30px;
}

.product-image {
    position: relative;
    width: 100%;
    padding-top: 133.33%; /* アスペクト比を3:4に固定 */
    background: #f5f5f5;
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-name-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    color: #fff;
    font-size: 1.2rem;
    letter-spacing: 2px;
    z-index: 2;
   font-family: "Spectral", serif;       
}

.product-content {
    position: relative;
    margin-top: -50px; /* 固定の重なり幅 */
    margin-left: 15px;
    margin-right: 15px;
    padding: 20px;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.products-title {
    font-family: "Spectral", serif;
    font-size: 2.5rem; /* サイズも少し大きくしました */
    letter-spacing: 5px;
    font-weight: 300;
    margin-bottom: 60px;
    text-align: center;
}

.fragrance-type {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #333;
}

.content-title {
    font-size: 1.4rem;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.notes-info {
    margin-bottom: 25px;
}

.note-group {
    display: flex;
    align-items: baseline;
    margin-bottom: 8px;
}

.note-label {
    min-width: 60px;
    color: #666;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.note-group p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.btn-shop {
    width: 100%;
    background: #000;
    color: #fff;
    padding: 12px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-shop:hover {
    background: #333;
    color: #fff;
}


.fragrance-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}


.product-volume {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 15px;
}

/* 商品一覧の配置調整 */
.products-slider {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.col-md-6.col-lg-3 {
    flex: 0 0 auto;
    width: 320px; /* カードの幅に合わせる */
}


/* Cart Banner */
.cart-banner {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #000000;
    color: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    /* アニメーション追加 */
    animation: fadeIn 1s ease forwards, cartBounce 2s ease infinite;
    animation-delay: 0s, 1s; /* フェードイン後にバウンス開始 */
}

.cart-banner:hover {
    background-color: #333333;
    color: #ffffff;
    animation-play-state: paused; /* ホバー時にバウンスを一時停止 */
}

.cart-icon {
    margin-bottom: 3px;
}

.cart-text {
    font-size: 0.6rem;
    text-align: center;
    letter-spacing: 0.5px;
    line-height: 1.2;
    width: 100%;
}
/* Cart Banner with Animation */
@keyframes cartBounce {
    0% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
/*FOOTERエリア*/
.footer {
    padding: 80px 0 30px;
    background: linear-gradient(135deg, #e8ecf2 0%, #cbd3dc 100%);
    color: #333;
}

.footer-content {
    margin-bottom: 50px;
}

.footer-col {
    position: relative;
    padding: 0 30px;
}

/* 仕切り線 */
.footer-col:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, 
        rgba(0,0,0,0.1) 0%,
        rgba(0,0,0,0.15) 50%,
        rgba(0,0,0,0.1) 100%);
}

.footer h4 {
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 25px;
    font-weight: 400;
}

.brand-message {
    font-size: 1.2rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-logo {
    max-width: 180px;
    margin-top: 20px;
}

.footer-logo img {
    width: 100%;
    height: auto;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #666;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #333;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: #666;
    transform: translateY(-2px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(0,0,0,0.1);
    text-align: center;
    font-size: 0.9rem;
}


/* レスポンシブ対応 */
@media (max-width: 767px) {
    .footer-col {
        margin-bottom: 40px;
        padding: 0 15px;
    }

    .footer-col::after {
        display: none;
    }

    .footer-col:not(:last-child) {
        border-bottom: 1px solid rgba(0,0,0,0.1);
        padding-bottom: 30px;
    }
}


/* Responsive Styles */
@media (max-width: 767px) {
    .hero-text {
        text-align: center;
        padding-bottom: 40px;
    }

    .hero-image {
        max-width: 80%;
        margin-bottom: -110px;
    }
    .brand-label {
        text-align: center;
    }
    
    .jp-title {
        text-align: center;
        font-size: 1.3rem;
    }

    .release-info {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .release-date {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .collection-section {
        padding-top: 100px;
    }

    .collection-image-container {
        margin-bottom: 40px;
    }

    .collection-title {
        font-size: 2rem;
    }

    .collection-details {
        padding: 0 20px;
    }

    .story-title {
        font-size: 2rem;
    }

    .story-text {
        padding: 0 20px;
    }
    .story-section {
        padding: 80px 0;
        background-attachment: scroll; /* fixed を解除 */
        background-size: cover; /* サイズを cover に固定 */
        transition: none; /* アニメーションを無効化 */
    }

    .story-section:hover {
        background-size: cover; /* ホバー時もサイズを固定 */
    }
    .limited-section {
        padding: 80px 0;
    }

    .limited-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .package-image-container {
        margin-top: 40px;
        padding: 0 20px;
    }

    .limited-content {
        text-align: center;
    }
    
  .brand-image-container {
        width: 100%;
        margin: 0;
    }

    .brand-content {
        padding: 60px 20px;
    }

    .brand-title {
        font-size: 1.5rem;
        margin-bottom: 40px;
    }

    .brand-text {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }

    .brand-tagline {
        font-size: 1.2rem;
        margin-top: 2rem;
    }
        .brand-logo {
        height: 20px; 
    }
    
       .brand-image {
        max-width: 100%;
        margin-bottom: 20px;
    }
    
    .product-image {
        height: 400px;
    }
    
    .product-content {
        margin-left: 15px;
        margin-right: 15px;
        padding: 20px;
    }
        .product-card {
        margin-bottom: 40px;
    }
        .products-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
        .buy-button-container {
        margin-top: 40px;
    }
        .cart-banner {
        bottom: 20px;
        right: 20px;
    }
}
