/* Global Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #fcfcfc;
}

/* Button color overrides */
.btn-primary {
    background-color: var(--btn-primary-bg);
    border-color: var(--btn-primary-border);
    color: var(--btn-primary-color);
}

.btn-primary:hover,
.btn-primary:focus {
    filter: brightness(0.95);
    color: var(--btn-primary-color);
}

.btn-outline-primary {
    color: var(--btn-outline-color);
    border-color: var(--btn-outline-border);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background-color: var(--btn-outline-color);
    border-color: var(--btn-outline-border);
    color: #fff;
}

.btn-success {
    background-color: var(--btn-success-bg);
    border-color: var(--btn-success-border);
    color: var(--btn-success-color);
}

.btn-success:hover,
.btn-success:focus {
    filter: brightness(0.95);
    color: var(--btn-success-color);
}

.btn-outline-success {
    color: var(--btn-outline-success-color);
    border-color: var(--btn-outline-success-border);
}

.btn-outline-success:hover,
.btn-outline-success:focus {
    background-color: var(--btn-outline-success-color);
    border-color: var(--btn-outline-success-border);
    color: #fff;
}

/* Product highlight + modal trigger */
.product-card.product-highlight {
    border: 2px solid var(--btn-outline-color);
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.15);
}

.product-image-trigger {
    cursor: pointer;
}

/* Header logo */
.navbar {
    overflow: visible;
}

.navbar-brand {
    position: relative;
    height: 44px;
    display: flex;
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
}

.site-logo {
    max-height: 30px;
    margin-right: 10px;
    transition: transform 0.2s ease;
    
}

.site-logo--full {
    max-height: 100px;
    transform: translateY(20px);
}

@media (max-width: 768px) {
    .navbar-brand {
        height: 36px;
    }
    .site-logo {
        max-height: 28px;
        margin-right: 8px;
    }
    .site-logo--full {
        max-height: 56px;
        transform: translateY(20px);
    }
}

/* Main carousel style variants */
.home-carousel-frame {
    margin-bottom: 1.5rem;
}

.home-carousel-frame--showcase {
    position: relative;
    padding-bottom: 48px;
}

.home-carousel--showcase {
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
    overflow: visible;
}

.home-carousel--showcase .carousel-inner {
    border-radius: 0;
    overflow: visible;
}

.home-carousel--showcase .carousel-item img {
    height: 520px !important;
}

.home-carousel--showcase .carousel-caption-showcase {
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.home-carousel--showcase .carousel-caption-showcase h5 {
    font-size: 2.2rem;
    font-weight: 300;
}

.home-carousel--showcase .carousel-caption-showcase p {
    font-size: 1rem;
    font-weight: 300;
    margin-bottom: 0;
}

.home-carousel--showcase .carousel-indicators-thumbs {
    position: absolute;
    left: 50%;
    bottom: -34px;
    transform: translateX(-50%);
    margin: 0;
    gap: 12px;
}

.home-carousel--showcase .carousel-indicators-thumbs [data-bs-target] {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 2px solid #fff;
    overflow: hidden;
    background: transparent;
    padding: 0;
    opacity: 1;
    text-indent: 0;
    line-height: 0;
    font-size: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}

.home-carousel--showcase .carousel-indicators-thumbs [data-bs-target].active {
    transform: scale(1.08);
}

.home-carousel--showcase .carousel-indicators-thumbs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .home-carousel--showcase .carousel-item img {
        height: 360px !important;
    }
    .home-carousel--showcase .carousel-caption-showcase h5 {
        font-size: 1.6rem;
    }
    .home-carousel--showcase .carousel-indicators-thumbs {
        bottom: -26px;
    }
    .home-carousel--showcase .carousel-indicators-thumbs [data-bs-target] {
        width: 44px;
        height: 44px;
    }
}

/* Subtle motion for main carousel images */
#homeCarousel .carousel-item img {
    transform-origin: center;
    animation: carousel-kenburns 12s ease-in-out infinite;
}

@keyframes carousel-kenburns {
    0% {
        transform: scale(1) translate3d(0, 0, 0);
    }
    50% {
        transform: scale(1.06) translate3d(-1%, -1%, 0);
    }
    100% {
        transform: scale(1) translate3d(0, 0, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    #homeCarousel .carousel-item img {
        animation: none;
        transform: none;
    }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    color: #FFF;
    transform: scale(1.1);
}

.whatsapp-float i {
    margin-top: 2px;
}
