
:root {
    --shopee-orange: #ff6b00;
    --shopee-orange-light: #fff0e6;
    --shopee-dark: #212121;
    --shopee-gray: #9e9e9e;
    --shopee-gray-light: #f5f5f5;
}

.text-shopee {
    color: var(--shopee-orange) !important;
}

.bg-shopee {
    background-color: var(--shopee-orange) !important;
}

.btn-shopee {
    background-color: var(--shopee-orange);
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-shopee:hover {
    background-color: #e65c00;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.3);
}

.btn-shopee-outline {
    border: 2px solid var(--shopee-orange);
    color: var(--shopee-orange);
    background: transparent;
}

.btn-shopee-outline:hover {
    background-color: var(--shopee-orange);
    color: white;
}

.card {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.15);
    border-color: var(--shopee-orange);
}

.product-image {
    height: 350px;
    object-fit: contain;
    cursor: pointer;
    background-color: var(--shopee-gray-light);
}

.carousel-promo .carousel-item img {
    height: 400px;
    object-fit: cover;
}

.carousel-indicators-promo button {
    width: 10px !important;
    height: 10px !important;
    border-radius: 50%;
    margin: 0 5px;
}

.carousel-indicators-promo button.active {
    background-color: var(--shopee-orange) !important;
}

.sale-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 1;
    background: var(--shopee-orange);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.rating-stars {
    color: #ffc107;
    font-size: 1rem;
}

.stats {
    font-size: 0.85rem;
    color: var(--shopee-gray);
}

.stats .bi {
    margin-right: 3px;
}

.price-container {
    margin: 10px 0;
}

.current-price {
    color: var(--shopee-orange);
    font-size: 1.3rem;
    font-weight: 700;
}

.original-price {
    color: var(--shopee-gray);
    text-decoration: line-through;
    font-size: 0.9rem;
    margin-left: 8px;
}

.discount-badge {
    background-color: var(--shopee-orange-light);
    color: var(--shopee-orange);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 8px;
}

.description-wrapper {
    max-height: 60px;
    overflow: hidden;
    position: relative;
    line-height: 1.4;
    color: #555;
    font-size: 0.9rem;
}

.description-wrapper.expanded {
    max-height: none;
}

.description-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 20px;
    background: linear-gradient(to right, transparent, white);
    display: none;
}

.description-wrapper.truncated::after {
    display: block;
}

.read-more {
    color: var(--shopee-orange);
    cursor: pointer;
    font-size: 0.85rem;
    text-decoration: none;
    display: inline-block;
    margin-top: 5px;
    font-weight: 600;
}

.read-more:hover {
    text-decoration: underline;
    color: #e65c00;
}

.review-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    transition: all 0.3s;
}

.review-card:hover {
    border-color: var(--shopee-orange);
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.1);
}

.promo-section {
    margin-top: 76px;
}

section {
    scroll-margin-top: 80px;
}

.carousel-control-custom {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.3s;
}

.carousel:hover .carousel-control-custom {
    opacity: 1;
}

.lg-backdrop {
    background-color: rgba(0, 0, 0, 0.25) !important;
}

.pin-social {
    position: fixed;
    bottom: 25px;
    right: 25px;
}