/* Custom Variables & Global */
:root {
    --primary-color: #e92525;
    --navy-dark: #0F172A;
    --bg-light: #f8f6f6;
}

body {
    font-family: 'Inter', sans-serif;
    color: #334155;
    background-color: var(--bg-light);
}

.font-heading {
    font-family: 'Montserrat', sans-serif;
}

.fw-black {
    font-weight: 800;
}

.text-navy {
    color: var(--navy-dark);
}

.bg-navy {
    background-color: var(--navy-dark);
}

.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-primary-light {
    background-color: rgba(233, 37, 37, 0.1);
}

.tracking-tight {
    letter-spacing: -0.05em;
}

.x-small {
    font-size: 0.7rem;
}

/* Navigation */
.nav-link-custom {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s;
}

    .nav-link-custom:hover, .nav-link-custom.active {
        color: white;
    }

.bg-dark-soft {
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-dark-soft {
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
}

    .btn-dark-soft:hover {
        background-color: rgba(255, 255, 255, 0.2);
        color: white;
    }

/* Product Gallery */
.main-image-container {
    aspect-ratio: 1 / 1;
}

.thumb-container {
    aspect-ratio: 1 / 1;
    cursor: pointer;
    transition: all 0.2s;
}

    .thumb-container:hover img {
        opacity: 1 !important;
    }

/* Form Controls */
.btn-outline-primary {
    border-color: #e2e8f0;
    color: #64748b;
    border-width: 2px;
}

    .btn-outline-primary:hover, .btn-check:checked + .btn-outline-primary {
        background-color: rgba(233, 37, 37, 0.1);
        border-color: var(--primary-color);
        color: var(--primary-color);
    }

.btn-outline-danger {
    border-color: #e2e8f0;
    color: #64748b;
    border-width: 2px;
}

/* Icons */
.icon-box {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Hover effects */
.hover-primary:hover {
    color: var(--primary-color) !important;
}

.btn-primary:active {
    transform: scale(0.98);
}


@keyframes progress-fill-33 {
    from {
        width: 0;
    }

    to {
        width: 33%;
    }
}

@keyframes progress-fill-66 {
    from {
        width: 33%;
    }

    to {
        width: 66%;
    }
}

@keyframes progress-fill-100 {
    from {
        width: 66%;
    }

    to {
        width: 100%;
    }
}

@keyframes poppling {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
    100% {
        transform: scale(1);
    }
}

.progress-33 {
    width: 33%;
    animation: progress-fill-33 1s ease-out forwards;
}

.progress-66 {
    width: 66%;
    animation: progress-fill-66 1s ease-out forwards;
}

.progress-100 {
    width: 100%;
    animation: progress-fill-100 1s ease-out forwards;
}

.poppling {
    animation: poppling 0.3s ease-out forwards;
    transform: scale(1);
}