html, body {
    height: 100%;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    /* overflow: hidden; */
    background: none;
    scroll-behavior: smooth;
}

/* ===== Desktop Sidebars ===== */
.left-sidebar, .right-sidebar {
    position: fixed;
    top: 0;
    bottom: 0;
    background: transparent;
    z-index: 20;
    color: #fff;
}

.left-sidebar.active, 
.right-sidebar.active{
    color: #000;
}

.left-sidebar {
    left: 0;
    width: 120px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
}

.left-sidebar .logo img{
    width: 25px;
    height: 25px;
}

.left-sidebar .contact-info .info,
.left-sidebar .contact-info .note{
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
}

.left-sidebar.active .contact-info .info, 
.left-sidebar.active .contact-info .note{
    color: #000;
}

.right-sidebar {
    right: 0;
    width: 120px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    padding: 25px 0;
}

.right-sidebar ul.menu{
    margin: 0;
}

.right-sidebar .menu li {
    list-style: none;
    cursor: pointer;
    padding: 7px 15px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-align: left;
    position: relative;
}

.right-sidebar .menu li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 13px;
    width: 3px;
    height: 10px;
    background-color: #FFF;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.right-sidebar.active .menu li::before{
    background-color: #000;
}

.right-sidebar .menu li a{
    color: #fff;
    text-decoration: none;
}

.right-sidebar.active .menu li a{
    color: #000;
}

.right-sidebar .menu li:not(.active)::before {
    height: 0;
    top: -10px; 
}

.offcanvas{
    margin: 30px;
    width: 600px !important;
    padding: 10px;
}

.offcanvas-title{
    width: 100%;
    text-align: center;
    font-style: normal;
    font-weight: 800;
    font-size: 16px;
    line-height: 18px;
    color: #002225;
    margin: 0;
}

.offcanvas-header .btn.text-reset i{
    color: #002225;
    font-size: 18px;
    font-weight: 600;
}

.product-cart{
    display: flex;
    margin-bottom: 20px;
}

.product-cart .remove-icon i{
    color: #002225;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
}

.product-cart .product-price{
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.cart-total strong{
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    color: #002225;
}

.checkout-btn{
    text-align: center;
    margin-top: 30px;
}

.checkout-btn .btn-checkout{
    border: 2px solid #002225;
    background-color: transparent;
    color: #002225;
    padding: 5px 20px;
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 21px;
    cursor: pointer;
    text-decoration: none;
}


@media (max-width: 767px){
    .offcanvas{
        margin: 0;
        width: 100% !important;
    }
}

/* Home */

#home .wrapper {
    height: 100vh;
    display: flex;
}

#home .main-content {
    flex: 1;
    position: relative;
    overflow: hidden;
}

#home .slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}

#home .slider-slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateX(100%);
    opacity: 0;
    transition: transform 0.6s ease, opacity 0.6s ease;
    z-index: 1;
}

#home .slider-slide.active {
    transform: translateX(0);
    opacity: 1;
    z-index: 2;
}

#home .slider-slide.exit-left {
    transform: translateX(-100%);
    opacity: 0;
    z-index: 1;
}

#home .slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#home .slider-inner {
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
    /* padding: 25px; */
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#home .slider-inner .title{
    padding: 25px 0;
}

#home .slider-description{
    font-size: 15px;
    line-height: 30px;
    padding: 25px 0;
}

#home .slider-description .view-more{
    color: #fff;
    text-underline-position: under;
}

#home .slider-title,
#home .slider-description,
#home .slider-counter {
    color: #fff;
    text-align: left;
    opacity: 1;
    transition: opacity 0.5s ease;
    text-shadow: 0 0 10px rgba(0,0,0,0.5);
}

#home .slider-slide .slide-title,
#home .slider-slide .slide-description,
#home .slider-slide .slide-counter {
    display: none;
}

#home .slider-title {
    font-size: 35px;
    font-weight: 400;
    float: left;
}

#home .slider-counter {
    font-size: 25px;
    line-height: 42px;
    float: right;
    top: 20px;
    right: 20px;
}

#home .fade-out {
    opacity: 0 !important;
}

#home .slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    z-index: 15;
    pointer-events: none;
}

#home .controls-inner {
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: all;
}

#home .controls-inner #prev{
    position: relative;
    left: 120px;
}

#home .controls-inner #next{
    position: relative;
    right: 120px;
}

#home .nav-btn {
    font-size: 25px;
    color: #fff;
    background: transparent;
    border: none;
    cursor: pointer;
}

/* ===== Mobile Navbar Styles ===== */
.navbar-custom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background-color: #fff;
    border-bottom: 1px solid #ddd;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-logo {
    text-align: center;
    flex-grow: 1;
}

.navbar-logo img {
    height: 24px;
}

.navbar-hamburger {
    font-size: 24px;
    cursor: pointer;
}

.navbar-cart {
    font-size: 16px;
    position: relative;
}

.overlay-menu {
    position: fixed;
    top: 55px;
    left: -108%;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 999;
    transition: left 0.3s ease-in-out;
    padding: 1rem;
}

.overlay-menu.active {
    left: 0;
}

.overlay-menu a {
    display: block;
    padding: 1rem 0;
    border-bottom: 1px solid #ddd;
    text-decoration: none;
    color: #000;
}

/* ===== Product ===== */

#product .main-wrapper {
    margin-left: 120px;
    margin-right: 120px;
    /* overflow: hidden; */
    height: 100vh;
    overflow-x: hidden;
    overflow-y: scroll;
}

#product .main-container {
    display: flex;
    width: 200%;
    transition: transform 0.5s ease-in-out;
}

#product .main-section {
    width: 50%;
    padding: 20px;
}

#product .category-nav {
    margin-bottom: 20px;
    display: flex;
    gap: 15px;
}

#product .category-nav a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
}

#product .category-nav a.active {
    text-decoration: underline;
}

#product .product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

#product .product-card {
    cursor: pointer;
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

#product .product-img-wrapper {
    position: relative;
    width: 100%;
    padding-top: 100%; /* Keeps the aspect ratio */
    margin-bottom: 10px;
}

#product .product-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease-in-out;
}

#product .product-img-wrapper .img-front {
    opacity: 1;
    z-index: 1;
}

#product .product-img-wrapper .img-back {
    opacity: 0;
    z-index: 0;
}

#product .product-card:hover .img-front {
    opacity: 0;
}

#product .product-card:hover .img-back {
    opacity: 1;
    z-index: 2;
}

#product .product-card .product-title{
    font-size: 16px;
    font-weight: 700;
}

#product .product-title-price{
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0px;
    padding: 20px 10px;
    background: #fff;
    z-index: 999;
}

#product .details img{
    width: 100%;
}

#product .details .category{
    font-style: normal;
    font-weight: 500;
    font-size: 13px;
    line-height: 18px;
    color: #B1B1B1;
    margin-bottom: 15px;
}

#product .details .products-title{
    font-style: normal;
    font-weight: 500;
    font-size: 32px;
    line-height: 32px;
    color: #002225;
    margin-bottom: 15px;
}

#product .details .description{
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 21px;
    color: #000000;
}

.accordion-button::after {
  display: none; /* Hide Bootstrap's default arrow */
}

.accordion-button .icon::before {
  content: "+"; /* Default icon */
  font-size: 18px;
}

.accordion-button:not(.collapsed) .icon::before {
  content: "−"; /* When open */
}

#product .details .product-deatil{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

#product .accordion .accordion-item{
    border: 0;
}

#product .accordion .accordion-header:focus,
.accordion-button:not(.collapsed){
    background: none;
    box-shadow: none;
    border: none;
}

#product .accordion .accordion-button{
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    font-style: normal;
    font-weight: 600;
    font-size: 13px;
    line-height: 24px;
    color: #002225;
}

#product .accordion-body{
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 21px;
    color: #000000;
    padding: 8px 0;
}

#product .product-more-deatil{
    margin: 20px 0;
}

#product .product-more-deatil img{
    width: 100%;
}

#product .product-more-deatil .desc{
    margin: 30px;
}

#product .product-more-deatil .desc p{
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 24px;
    text-align: center;
    color: #000000;
    margin-bottom: 0;
}

#product .product-more-deatil .title{
    font-style: normal;
    font-weight: 500;
    font-size: 25px;
    color: #002225;
    margin-bottom: 20px;
    text-transform: uppercase;
}

#product .add-to-card-btn{
    text-align: center;
    position: sticky;
    bottom: 20px;
}

#product .add-to-card-btn .card-btn{
    background: #fff;
    border: 2px solid #002225;
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    color: #002225;
    padding: 7px 15px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    #product .main-wrapper {
        margin: 0;
    }
    #product .main-section {
        width: 100%;
    }
    #product .main-container {
        width: 200%;
    }
}

.btn-back {
    margin-bottom: 20px;
}


/* ===== Responsive Behavior ===== */

#about{
    padding: 30px 0;
    height: 100vh;
}

#about .carousel-title{
    font-size: 35px;
    font-weight: 400;
    float: left;
    color: #000;
    width: 100%;
    z-index: 999;
    position: relative;
}

#about .carousel-title .carousel-indicator-custom{
    font-size: 25px;
    font-weight: 600;
    line-height: 50px;
    float: right;
    color: #000;
}

#about .carousel-inner .item img{
    width: 100%;
    height: 500px;
    object-fit: cover;
}

#about .carousel-control.right,
#about .carousel-control.left{
    background: none;
    display: flex;
    align-items: center;
    z-index: 999;
}

.carousel-control {
  width: auto;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  background: none;
  color: #000;
  z-index: 5;
  opacity: 1;
}

#about .carousel-control.left i,
#about .carousel-control.right i {
    color: #000;
}

#about .carousel-control.left {
  left: -15px;
}

#about .carousel-control.right {
  right: -15px;
}

#about .about-desc{
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 24px;
    color: #000000;
    margin: 30px;
}

@media (max-width: 768px) {
  #about .carousel-control.left {
    left: -10px;
  }

  #about .carousel-control.right {
    right: -10px;
  }
}


/* ===== Contact ===== */


#contact{
    height: 100vh;
    padding: 20px 0;
}

#contact .contact-title,
#contact .title{
    font-style: normal;
    font-weight: 500;
    font-size: 32px;
    line-height: 32px;
    color: #002225;
    margin-bottom: 30px;
}

#contact .contact-desc {
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 21px;
    color: #002225;
    margin-bottom: 40px;
}

#contact input[type="text"],
#contact textarea {
    width: 100%;
    border: 2px solid #002225;
    padding: 10px;
    font-size: 14px;
    margin-bottom: 10px;
}

#contact input[type="text"]::placeholder,
#contact textarea::placeholder {
    font-style: normal;
    font-weight: 500;
    font-size: 13px;
    line-height: 18px;
    color: #D0D2D3;
    font-weight: lighter;
}

#contact button {
    border: 2px solid #002225;
    background-color: transparent;
    color: #002225;
    padding: 5px 20px;
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 21px;
    color: #002225;
    cursor: pointer;
}

@media (max-width: 576px) {
    #contact .contact-title, .title {
        font-size: 24px;
    }

    #contact button {
        width: 100%;
    }
}


/* ===== Achive ===== */


#archive{
    min-height: 100vh;
    padding: 20px 0;
}

#archive .archive {
    font-style: normal;
    font-weight: 500;
    font-size: 32px;
    line-height: 32px;
    color: #002225;
    margin-bottom: 30px;
}

#archive .archive-items{
    overflow-x: hidden;
    overflow-y: scroll;
    max-height: 100vh;
}

#archive .archive-item {
    border-top: 1px solid #0b2b2e;
}

#archive .archive-type {
    font-style: normal;
    font-weight: 500;
    font-size: 13px;
    line-height: 18px;
    color: #D0D2D3;
    text-transform: uppercase;
    margin: 15px 0;
}

#archive .archive-title {
    font-style: normal;
    font-weight: 800;
    font-size: 16px;
    line-height: 22px;
    color: #002225;
    margin: 15px 0 20px 0;
}

#archive  .archive-date {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    color: #002225;
}

#archive .archive-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

@media (max-width: 767px) {
    #archive .archive-title {
        font-size: 18px;
    }

    #archive .archive-date {
        font-size: 15px;
    }

    #archive .archive-item .row .col-12.col-md-6:first-child{
        order: 1;
    }
}

/* ===== Gallery ===== */

#gallery{
    position: relative;
    height: 100vh;
    padding: 50px 0;
}

#gallery .gallery-container {
    padding: 20px;
}

#gallery .gallery-title,
#gallery .counter {
    font-style: normal;
    font-weight: 500;
    font-size: 32px;
    line-height: 32px;
    color: #002225;
    margin-bottom: 30px;
}

#gallery .gallery-slider-container,
#gallery .gallery-details,
#gallery .gallery-more {
    width: 95%;
    margin: 0 auto;
    position: relative;
}

#gallery .gallery-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
}

#gallery .gallery-image-wrapper {
    display: flex;
    transition: transform 0.6s ease-in-out;
    width: 100%;
}

#gallery .gallery-slide {
    position: relative;
    flex: 0 0 100%;
    user-select: none;
}

#gallery .gallery-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

#gallery .prev-btn,
#gallery .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    line-height: 25px;
    color: #002225;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10;
}

#gallery .prev-btn {
    left: -40px;
}

#gallery .next-btn {
    right: -40px;
}

#gallery .caption-text {
    display: none;
}

#gallery .gallery-more .caption {
    position: sticky;
    font-style: normal;
    font-weight: 500;
    font-size: 21px;
    line-height: 24px;
    color: #002225;
    opacity: 0;
    transition: opacity 0.5s ease;
    margin-bottom: 10px;
}

#gallery .gallery-more .caption.visible {
    opacity: 1;
}

#gallery .gallery-more a{
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    color: #000000;
    text-decoration: underline;
}

#gallery .image-grid {
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    /* padding: 20px; */
    width: 100%;
}

#gallery .image-grid.active {
    display: grid;
}

#gallery .image-grid img{
    width: 100%;
    cursor: pointer;
}

#gallery .image-grid-title {
  display: none;
  float: left;
  width: 100%;
  margin-bottom: 30px;
}

#gallery .image-grid-title span{
    font-style: normal;
    font-weight: 500;
    font-size: 32px;
    line-height: 32px;
    color: #002225;
}


#gallery .image-grid-title.active {
  display: block;
}

#gallery .popup-overlay {
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
}

#gallery .popup-overlay.active {
    display: flex;
    animation: slideBottomToTop 0.6s ease forwards;
}

#gallery .popup-image {
    width: 100%;
    height: 100vh;
    background: white;
    padding: 20px;
    position: relative;
    text-align: center;
}

#gallery .popup-image img {
    /* width: 100%; */
    height: auto;
    border-radius: 12px;
}

#gallery .cancel-btn {
    float: right;
    /* position: absolute; */
    top: 10px;
    right: 15px;
    font-size: 30px;
    font-weight: bold;
    background: none;
    border: none;
    color: #000;
    cursor: pointer;
}

@keyframes slideLeftToRight {
    from { transform: translateX(0); }
    to { transform: translateX(100%); }
}

@keyframes slideRightToLeft {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}

@keyframes slideTopToBottom {
    from { transform: translateY(0); }
    to { transform: translateY(100%); }
}

@keyframes slideBottomToTop {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

@media (max-width: 767px) {
    #gallery .gallery-slider-container,
    #gallery .gallery-details,
    #gallery .gallery-more {
        width: 90%;
    }

    #gallery .next-btn {
        right: -30px;
    }

    #gallery .prev-btn {
        left: -30px;
    }
}


/* ===== Coupon ===== */

#coupon{
    height: 100vh;
    background-color: #001f20;
    color: #fff;
    margin: 50px 0;
}

#coupon .nav-tabs .nav-link {
    text-transform: uppercase;
    border: none;
    border-bottom: 2px solid transparent;
    font-weight: 600;
    font-size: 18px;
    line-height: 30px;
    color: #244346;
}

#coupon .nav-tabs .nav-link:hover{
    background-color: transparent;
}

#coupon .nav-tabs .nav-link.active {
    color: white;
    border-bottom: 2px solid white;
    background: transparent;
}

#coupon .nav-tabs .nav-item:last-child {
    margin-left: auto;
}


#coupon .page-indicator {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.2rem;
    font-weight: 600;
}

#coupon .tab-pane {
    display: none;
}

#coupon .tab-pane.active {
    display: block;
}

/* Coupon Slider Styles */

#coupon .main-content{
    padding: 30px 0;
}

#coupon .pc-slider-container {
    position: relative;
    max-width: 800px;
    margin: 50px auto;
}

#coupon #pc-slider-title {
    position: absolute;
    top: -40px;
    left: 0;
    font-weight: 500;
    font-size: 30px;
    color: #FFFFFF;
    transition: opacity 0.5s;
}

#coupon #pc-slider-counter {
    position: absolute;
    top: -40px;
    right: 0;
    font-weight: 500;
    font-size: 30px;
    color: #FFFFFF;
    transition: opacity 0.5s;
}

#coupon .pc-slider {
    overflow: hidden;
    position: relative;
    border-radius: 8px;
    height: 60vh;
}

#coupon .pc-slide {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: black;
    z-index: 1;
    transform: translateX(100%);
    transition: transform 0.5s ease;
}

#coupon .pc-slide.active {
    transform: translateX(0);
    z-index: 2;
}

#coupon .pc-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: white;
    cursor: pointer;
    user-select: none;
    z-index: 10;
}

#coupon .pc-arrow.left {
    left: -40px;
}

#coupon .pc-arrow.right {
    right: -40px;
}

#coupon .pc-desc {
    font-weight: 500;
    font-size: 18px;
    line-height: 30px;
    color: #FFFFFF;
}

#coupon .section-title {
    font-weight: 600;
    font-size: 18px;
    line-height: 25px;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 20px;
}

#coupon .dropdown-container {
    position: relative;
    display: inline-block;
    width: 200px;
}

#coupon .dropdown-selected {
    padding: 8px 0;
    border-bottom: 1px solid white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

#coupon .dropdown-selected span {
    flex: 1;
    width: 93px;
    height: 30px;
    font-weight: 500;
    font-size: 24px;
    line-height: 30px;
    text-align: center;
    color: #244346;
}

#coupon .dropdown-arrow {
    font-size: 1rem;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

#coupon .dropdown-arrow.open {
    transform: rotate(180deg);
}

#coupon .dropdown-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #002020;
    border-top: 1px solid white;
    overflow-y: scroll;
    max-height: 0;
    transition: max-height 0.4s ease;
    z-index: 10;
}

#coupon .dropdown-options.show {
    max-height: 150px;
    border-bottom: 1px solid white;
}

#coupon .dropdown-option {
    padding: 10px;
    font-weight: 500;
    font-size: 24px;
    line-height: 30px;
    text-align: center;
    color: #FFF;
    cursor: pointer;
}

#coupon .dropdown-option:hover {
    color: #D2D919;
}

#coupon .description {
    margin-top: 200px;
    font-weight: 500;
    font-size: 18px;
    line-height: 25px;
    text-align: center;
    color: #FFFFFF;
    margin-left: auto;
    margin-right: auto;
}

#coupon .dropdown-options::-webkit-scrollbar {
    display: none;
}

#coupon .dropdown-options::-webkit-scrollbar-thumb {
    display: none;
}

#coupon #inactive .container .coupon-inactive-slider {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#coupon .my-slider-wrapper-1 {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#coupon .my-slider-1 {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

#coupon .my-slide-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 0.6s ease;
}

#coupon .slide-details {
    position: absolute;
    top: 30px;
    left: 30px;
    font-size: 14px;
    line-height: 1.6;
    text-align: left;
}

#coupon .slide-details a {
    color: white;
    text-decoration: underline;
    cursor: pointer;
}

#coupon #my-slide-counter-1 {
    position: absolute;
    top: 0px;
    right: 0px;
    font-size: 20px;
    opacity: 1;
    transition: opacity 0.5s ease;
    z-index: 10;
}

#coupon .my-slider-arrow-1 {
    font-size: 32px;
    cursor: pointer;
    user-select: none;
    color: white;
    padding: 10px;
    z-index: 20;
}

#coupon .circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: red;
    position: relative;
}

#coupon .circle::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 90px;
    width: 4px;
    height: 40px;
    background: brown;
    transform: rotate(-20deg);
    border-radius: 2px;
}

#coupon .days {
    font-weight: 500;
    font-size: 12px;
    text-align: center;
    color: #FFFFFF;
    margin-top: 25px;
}

#coupon .days span {
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    color: #D2D919;
}

#coupon .popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

#coupon .popup-content {
    background: #002424;
    color: white;
    width: 100%;
    padding: 30px;
    border-radius: 12px;
    height: 100vh;
    position: relative;
}

#coupon .close-btn {
    position: absolute;
    top: 50px;
    right: 30px;
    font-size: 28px;
    cursor: pointer;
    color: white;
    user-select: none;
}

#coupon .timeline-container {
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
    text-align: center;
    position: relative;
}

#coupon .timeline-title {
    font-weight: 500;
    font-size: 30px;
    line-height: 30px;
    text-align: center;
    color: #D2D919;
    margin-bottom: 20px;
}

#coupon .timeline-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    margin-top: 150px;
}

#coupon .timeline-block:nth-child(1) {
    border-left: 1px solid #D2D919;
}

#coupon .timeline-block {
    border-right: 1px solid #D2D919;
    padding: 20px 10px;
    min-width: 100px;
    flex: 1;
    transition: background-color 0.3s, color 0.3s;
    position: relative;
    z-index: 1;
}

#coupon .current-section {
    position: absolute;
    left: calc(23%);
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    z-index: 2;
}

#coupon .current-text {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

#coupon .current-arrow {
    font-size: 24px;
    line-height: 1;
}

#coupon .percentage {
    font-weight: 900;
    font-size: 16px;
    text-align: center;
    color: #FFFFFF;
}

#coupon .hover-text {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 12px;
    border-radius: 4px;
    margin-top: 5px;
    width: 180px;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    color: #FFFFFF;
}

#coupon .timeline-block:hover {
    background-color: #D2D919;
    color: #002329;
    z-index: 2;
}

#coupon .timeline-block:hover .hover-text {
    display: block;
}

#coupon .issue-expire {
    margin-top: 150px;
    font-weight: 500;
    font-size: 14px;
    line-height: 30px;
    text-align: center;
    color: #FFFFFF;
}

#coupon .issue-expire span {
    color: #D2D919;
}

#coupon .coupon-inactive-title{
    font-weight: 600;
    font-size: 25px;
    line-height: 40px;
    color: #FFFFFF;
    text-align: left;
}

#coupon .coupon-inactive-notice ul li{
    font-weight: 500;
    font-size: 16px;
    line-height: 30px;
    color: #FFFFFF;
    text-align: left;
}

@media (max-width: 767px) {
    #coupon .pc-arrow.left {
        left: -20px;
    }

    #coupon .pc-arrow.right {
        right: -20px;
    }

    #coupon .main-content {
        height: auto;
    }

    #coupon .timeline-row {
        flex-direction: column;
        align-items: center;
        margin-top: 60px;
    }

    #coupon .timeline-block {
        width: 100%;
        max-width: 300px;
    }

    #coupon .current-section {
        position: static;
        margin-bottom: 20px;
        transform: none;
    }

    #coupon .hover-text {
        width: 90%;
    }

    #coupon .issue-expire {
        margin-top: 40px;
    }
}

@media (max-width: 576px) {
    .timeline-row {
        margin-top: 40px;
    }

    .issue-expire {
        margin-top: 20px;
    }
}


/* ===== Responsive Behavior ===== */

@media (min-width: 1141px) and (max-width: 1250px){
    #home .slider-inner{
        max-width: 900px;
    }
}

@media (min-width: 1031px) and (max-width: 1140px){
    #home .slider-inner{
        max-width: 800px;
    }
}

@media (min-width: 971px) and (max-width: 1030px){
    #home .slider-inner{
        max-width: 750px;
    }
}

@media (min-width: 831px) and (max-width: 970px){
    #home .slider-inner{
        max-width: 600px;
    }
}

@media (min-width: 768px) and (max-width: 830px){
    #home .slider-inner{
        max-width: 550px;
    }
}

@media (min-width: 768px){
    .navbar-custom{
        display: none;
    }
}

@media (max-width: 767px) {

    html, body{
        overflow: visible;
    }

    #product .main-wrapper{
        height: 50vh;
    }
    
    .right-sidebar,
    .left-sidebar {
        display: none !important;
    }

    #home .wrapper,
    #home .slider-inner{
        height: 50vh;
    }

    #home .controls-inner #prev{
        left: 0px;
    }

    #home .controls-inner #next{
        right: 0px;
    }

    #home .slider-title,
    #home .slider-counter{
        font-size: 22px;
    }

    #home .slider-inner{
        padding: 15px;
    }

    #about .carousel-title,
    #about .carousel-title .carousel-indicator-custom{
        font-size: 22px;
        line-height: 30px;
    }

    #about .carousel-inner .item img{
        height: 250px;
    }
}