:root {
        --brand-teal: #00b2a9;
        --brand-teal-dark: #008f88;
        --light-pink: #FFDDE2;
        --text-gray: #5E6E6A;
    }
    /* Product Section */
    .product-main-img {
        border: 1px solid var(--light-pink);
        border-radius: 15px;
        padding: 40px;
        background: #fff;
        height: 350px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }
    .product-main-img img{
        height: 100% !important;
        object-fit: contain;
    }
    .thumb-img {
        width: 60px;
        height: 60px;
        border: 1px solid #eee;
        border-radius: 8px;
        cursor: pointer;
        object-fit: contain;
        padding: 5px;
    }
    .product-title { font-weight: 600; color: #2D2E2E; margin-bottom: 0; font-size: 30px; }
    .product-subtitle { color: #333; font-size: 16px; margin-bottom: 15px; }
    .price-tag { color: var(--brand-teal); font-weight: 600; font-size: 20px; }
    .old-price { text-decoration: line-through; color: #959595; font-weight: 500; font-size: 12px; margin-left: 10px; }
    .discount-badge { color: var(--brand-teal); font-size: 12px; font-weight: 500; }
    
    .spec-table td {color: var(--text-gray); padding: 2px 0; font-size: 14px; font-weight: 500; }
    .spec-table td.spec-label { color: var(--text-gray); width: 50%; font-weight: 600; }
    .btn-add-cart {
        background-color: var(--brand-teal);
        color: white;
        border-radius: 8px;
        padding: 10px 30px;
        border: none;
        font-weight: 600;
    }
    .btn-add-to-cart-a {
        background-color: var(--brand-teal);
        color: white;
        border-radius: 8px;
        padding: 10px 30px;
        border: none;
        font-weight: 600;
        text-decoration: none;
    }
    .btn-add-cart:hover { background-color: var(--brand-teal-dark); color: white; }
    
    .btn-add-to-cart-disabled {
        background-color: var(--brand-teal);
        color: #ffffff;
        border: none;
        border-radius: 10px;
        padding: 12px 20px;
        font-size: 14px;
        font-weight: 500;
        cursor: pointer;
        transition: background-color 0.3s ease;
        white-space: nowrap;
        opacity: 0.5;
    }

    /* Order History Table */
    .table-order { overflow: hidden; border: none; }
    .table-order th { font-weight: 400; border: none; padding: 15px; background-color: var(--brand-teal); color: white; }
    .table-order th:first-child{border-radius: 10px 0 0 10px;}
    .table-order th:last-child{border-radius: 0px 10px 10px 0;}
    .table-order td { padding: 12px 15px; color: #333333; border-bottom: 1px solid #f1f1f1; }

    .table-order tbody tr td{
        border: 1px solid #FFE2E6;
        border-radius: 10px;
    }

    /* Related Products */
    .related-card { border: 1px solid #ffb3bd; border-radius: 12px; transition: 0.3s; background-color: #fff; }
    .related-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
    .related-title { font-size: 0.8rem; font-weight: 600; min-height: 40px; }
    .related-price { color: var(--brand-teal); font-weight: 700; font-size: 0.9rem; }
    .related-card img{
        border-bottom: 1px solid #ffb3bd;
    }
    
    /* Footer Styles */
    .main-footer {
        background-color: #ffffff;
        /* border-top: 1px solid var(--border-color); */
        box-shadow: 0 0 40px rgba(0 0 0 / 10%);
        padding: 60px 0 30px;
        margin-top: 80px;
        border-radius: 20px 20px 0 0;
    }

    .main-footer .container {
        max-width: 1140px;
    }

    .footer-logo {
        max-width: 101px;
        height: auto;
        margin-bottom: 20px;
    }

    .footer-description {
        font-size: 14px;
        color: var(--text-secondary);
        max-width: 367px;
        margin-bottom: 30px;
    }

    .footer-nav {
        display: flex;
        gap: 30px;
        justify-content: flex-end;
        flex-wrap: wrap;
    }

    .footer-nav a {
        color: var(--text-primary);
        text-decoration: none;
        font-size: 16px;
        font-weight: 400;
        transition: color 0.3s ease;
    }

    .footer-nav a:hover {
        color: #008a7d;
    }

    .footer-bottom {
        border-top: 1px solid #FFAFBA;
        padding-top: 20px;
        margin-top: 30px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .footer-copyright {
        font-size: 14px;
        color: var(--text-secondary);
    }

    .social-icons {
        display: flex;
        gap: 10px;
        justify-content: center;
        flex: 1;
    }

    .social-icon {
        width: 30px;
        height: 30px;
        background-color: var(--brand-teal);
        color: #ffffff;
        border-radius: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        transition: background-color 0.3s ease;
    }

    .social-icon:hover {
        background-color: #008a7d;
        color: #ffffff;
    }

    .footer-links {
        display: flex;
        gap: 20px;
    }

    .footer-links a {
        color: var(--text-secondary);
        text-decoration: none;
        font-size: 14px;
        transition: color 0.3s ease;
    }

    .footer-links a:hover {
        color: #008a7d;
    }
    /* --  */
    .product-description {
        position: relative;
        z-index: 99;
    }
    .product-det-card{
        border: 1px solid #ffdde2;
        padding: 15px 25px;
        border-radius: 15px;
        background: #fff;
        box-shadow: 0px 0px 10px 0 rgb(254 241 243);
        z-index: 9;
        position: relative;
    }
    .product-description h5{
        font-size: 30px;
        color: #2D2E2E;
    }
    .product-description p, .product-description ul li{
        font-size: 16px;
        color: #5E6E6A;
        font-weight: 500;
    }
    .bg-light-pink{
        background-color: #FFF1F3;
    }
    
    .blured-price{
    filter: blur(5px);
}

select menu.select-menu {
  width: 200px;
  margin: 50px auto;
}
.select-menu .select-btn {
  display: flex;
  height: 40px;
  background: #fff;
  padding: 20px;
  font-size: 14px;
  font-weight: 400;
  border-radius: 8px;
  align-items: center;
  cursor: pointer;
  justify-content: space-between;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
.select-menu .options {
  position: absolute;
  width: 100%;
  overflow-y: auto;
  max-height: 295px;
  z-index: 9999 !important;
  padding: 10px;
  margin-top: 10px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  animation-name: fadeInDown;
  -webkit-animation-name: fadeInDown;
  animation-duration: 0.35s;
  animation-fill-mode: both;
  -webkit-animation-duration: 0.35s;
  -webkit-animation-fill-mode: both;
}
.select-menu .options .option {
  display: flex;
  height: 35px;
  cursor: pointer;
  padding: 0 16px;
  border-radius: 8px;
  align-items: center;
  background: #fff;
} 
.select-menu .options .option:hover {
  background: #f2f2f2;
}
.select-menu .options .option i {
  font-size: 14px;
}
.select-menu .options .option .option-text {
  font-size: 14px;
  color: #333;
}

.select-btn i {
  font-size: 25px;
  transition: 0.3s;
}

.select-menu.active .select-btn i {
  transform: rotate(-180deg);
}
.select-menu.active .options {
  display: block;
  opacity: 0;
  z-index: 10;
  animation-name: fadeInUp;
  -webkit-animation-name: fadeInUp;
  animation-duration: 0.4s;
  animation-fill-mode: both;
  -webkit-animation-duration: 0.4s;
  -webkit-animation-fill-mode: both;
}

@keyframes fadeInUp {
  from {
    transform: translate3d(0, 30px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes fadeInDown {
  from {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
  to {
    transform: translate3d(0, 20px, 0);
    opacity: 0;
  }
}

.select-menu{
    display: none;
    width: 200px;
    position: relative;
}
.form-control{
    background-color: #f7f7f7;
}
.modal-header{
    border: 0;
}
.btn-theme {
    background: #00b2a9;
    padding: 8px 30px;
    color: #fff;
}
.btn-theme:hover{
    background-color: #008a7d;
    color: #fff;
}
a.option-text{
    color: #00b2a9 !important;
    text-decoration: none;
}
.main-footer{
    margin-top: 0;
}

/*slick slider*/
/* Section Background */
.related-products {
    background-color: #FFF8F8; /* Extremely light pink background */
}

/* Product Card Styling */
.related-slider .product-card {
    border: 1.5px solid #FFE2E6 !important;
    border-radius: 12px;
    background: #fff;
    transition: transform 0.2s;
    min-height: 292px;
}
.related-slider .product-card .card-body{
    border-top: 1px solid  #FFE2E6;
}

/* Circular Arrow Link */
.slider-arrow-link {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 28px;
    height: 28px;
    border: 1.5px solid var(--brand-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-teal);
    text-decoration: none;
    font-size: 12px;
}

.slider-arrow-link:hover {
    background-color: var(--brand-teal);
    color: #fff;
}

/* Progress Bar Container */
.slider-progress-container {
    width: 200px;
    height: 6px;
    background-color: #E0E0E0;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.slider-progress-bar {
    width: 25%; /* Initial width based on slidesToShow */
    height: 100%;
    background-color: var(--brand-teal);
    transition: width 0.3s ease;
}
.slick-dots li button:before{
    content: '';
}
/*responsive*/
@media (max-width: 576px){
    .product-img-wrap {
        margin-top: 0;
    }
    .product-title {
        font-size: 24px;
        margin-bottom: 10px;
    }
    #addtocartbtn186{
        width: 100%;
    }
    .product-description h5 {
        font-size: 24px;
    }
    
}