.btn-outline-primary {
    --bs-btn-color: #ffffff;
    --bs-btn-border-color: #ffffff;
    --bs-btn-hover-color: #ffffff;
    --bs-btn-hover-bg: var(--bs-primary);
    --bs-btn-hover-border-color: var(--bs-primary);
    --bs-btn-focus-shadow-rgb: 13, 110, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--bs-primary);
    --bs-btn-active-border-color: #d29d68;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #0d6efd;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #0d6efd;
    --bs-gradient: none;
}

:root {
    --bs-body-bg: #000000;
    --bs-body-color: #ffffff;
    --bs-primary: #d29d68;
    --bs-secondary: #6c757d;
    --bs-success: #198754;
    --bs-info: #0dcaf0;
    --bs-warning: #ffc107;
    --bs-danger: #dc3545;
    --bs-light: #f8f9fa;
    --bs-dark: #212529;
}

body {
    font-family: "Josefin Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.bg-dark {
    background-color: #000000 !important;
}

.navbar-nav .nav-link {
    color: #cccccc;
    font-weight: 500;
    margin-right: 15px;
}

.navbar-nav .nav-link.active {
    color: var(--bs-primary);
    /* light green */
}

.navbar-brand {
    font-weight: bold;
    color: var(--bs-primary);
    letter-spacing: 2px;
    font-size: 1.5rem;
}

.navbar-icons i {
    margin-left: 15px;
    color: #555;
    cursor: pointer;
}

.navbar-divider {
    margin: 0 10px;
    color: #999;
}

.carousel-caption {
    bottom: 25%;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    background-color: var(--bs-primary);
    border-radius: 50%;
}

@media (max-width: 991px) {
    .navbar-collapse {
        text-align: center;
    }

    .navbar-brand {
        margin-top: 10px;
    }
}

.carousel-caption h1,
.carousel-caption p,
.carousel-caption a {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.product-img {
    max-height: 500px;
    object-fit: cover;
    width: 100%;
    border-radius: 10px;
}

.thumb-img {
    height: 80px;
    width: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
}

.thumb-img.active {
    border-color: #9FCC9C;
}

.rating i {
    color: #FFD700;
}

.btn-wishlist {
    background-color: #f3f3f3;
    border: none;
    color: #333;
}

.btn-wishlist:hover {
    background-color: #2b2b2b;
}

.btn-primary {
    background: #000000 !important;
    border-color: #000000 !important;
}

.cart-item {
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.cart-item img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
}

.item-info {
    flex: 1;
    padding-left: 15px;
}

.item-title {
    font-weight: 600;
}

.item-price {
    color: var(--bs-primary);
    font-weight: 600;
}

.summary-box {
    background: #3d3d3d;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
    color: #fff;
}

.btn-remove {
    background: transparent;
    border: none;
    color: #dc3545;
}

.btn-remove:hover {
    text-decoration: underline;
}

.checkout-title {
    font-weight: 600;
    margin-bottom: 20px;
}

.form-control:focus {
    border-color: var(--bs-primary);
    box-shadow: none;
}

.order-item {
    border-bottom: 1px solid #eee;
    padding: 10px 0;
}

.order-item:last-child {
    border-bottom: none;
}

.order-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 10px;
}

.order-item-title {
    font-size: 0.95rem;
    font-weight: 500;
}

.total-price {
    font-weight: 600;
    font-size: 1.1rem;
}

.thank-you-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.thank-you-card .check-icon {
    background: #9FCC9C;
    color: white;
    font-size: 2rem;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    line-height: 60px;
    margin: 0 auto 20px;
}

.thank-you-card h2 {
    font-weight: 700;
    margin-bottom: 10px;
}

.thank-you-card p {
    color: #6c757d;
}

.navbar-brand img {
    max-height: 80px;
}