.alert.alert-danger.alert-dismissible.fade.show {
    position: fixed;
    right: 5px;
    top: 40px;
    z-index: 9999;
    padding: 10px;
    border-radius: 5px;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.product-card .product-card-image{
    max-height: 250px;
}
/* mobile screen */
@media (max-width: 900px) {
    .product-card .product-card-image{
        max-height: 150px;
    }
    /* mobile */
    .container {
        padding: 0px;
    }
    .checkout-steps{
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        margin: 10px;
        overflow: unset;
        gap: 10px;
        font-size: 11px;
    }.step-divider{
        display: none;
    }
    .step-number{
        width: 20px;
        height: 20px;
        line-height: 20px;
        font-size: 11px;
    }
    section h2{
        font-size: 14px;
    }
    #cartBtn-desktop{
        display: none;
    }
    footer{
        display: none;
    }
    body{
        margin-bottom: 60px !important;
    }
    #fav-desk{
        display: none;
    }
    .headland{
        height: 70px !important;
    }
    .logo-txt{
        font-size: 15px;
    }
    #main{
        padding-top: 60px !important;
    }

}
.mobile-bttom .active{
    color: rgb(198 71 33);

}
#alert-container {
    position: fixed;
    top: 30px;
    left: 24px;
    width: min(90%, 360px);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 2000;
}

#alert-container .alert {
    margin: 0;
    border-radius: 10px;
    border: 1px solid transparent;
    padding: 12px 16px;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.15);
}

@media (max-width: 640px) {
    #alert-container {
        left: 16px;
        width: calc(100% - 32px);
    }
}
.alert{
    margin: 20px;
}
.invalid-feedback{
    color: red;
}

/* Bestsellers carousel */
.bestseller-scroller {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
}

.bestseller-scroller::-webkit-scrollbar {
    display: none;
}

.bestseller-card-wrapper {
    flex: 0 0 78%;
    scroll-snap-align: start;
}

@media (min-width: 640px) {
    .bestseller-card-wrapper {
        flex: 0 0 48%;
    }
}

@media (min-width: 1024px) {
    .bestseller-card-wrapper {
        flex: 0 0 24%;
    }
}

.bestseller-nav-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    border: 1px solid #d6d3ce;
    background: #fff8f0;
    color: #7c2d12;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.bestseller-nav-button:hover {
    background: #f3d6b5;
    border-color: #c9a77c;
}

.bestseller-nav-button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Starter Experience Pack Section */
.starter-pack-section {
    padding: 40px 0;
    background: #f8f8f8;
    border-radius: 24px;
    margin: 0 -20px;
    padding: 40px 20px;
}

.starter-pack-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 0 20px;
}

.starter-pack-nav {
    display: flex;
    gap: 12px;
}

.nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #e5e5e5;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    border-color: #c9a77c;
    background: #c9a77c;
    color: white;
}

.starter-pack-slider-wrapper {
    overflow: hidden;
    margin-bottom: 40px;
}

.starter-pack-slider {
    display: flex;
    gap: 20px;
    padding: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.starter-pack-slider::-webkit-scrollbar {
    display: none;
}

.starter-pack-card {
    flex: 0 0 auto;
    width: 280px;
    height: 400px;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.starter-pack-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.starter-pack-image {
    width: 100%;
    height: 100%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.starter-pack-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.starter-pack-description {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.starter-pack-description h3 {
    margin-bottom: 16px;
}

.highlight-text {
    background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.description-text {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

@media (max-width: 768px) {
    .starter-pack-section {
        margin: 0 -12px;
        padding: 30px 12px;
        border-radius: 20px;
    }

    .starter-pack-header {
        padding: 0 12px;
    }

    .starter-pack-slider {
        padding: 0 12px;
        gap: 16px;
    }

    .starter-pack-card {
        width: 240px;
        height: 340px;
    }

    .nav-btn {
        width: 40px;
        height: 40px;
    }

    .starter-pack-description {
        padding: 0 12px;
    }

    .description-text {
        font-size: 14px;
    }
}
