body {
    font-family: 'Roboto', sans-serif;
    color: #212121;
    background-color: #ffffff;
    box-sizing: border-box;
}

.bg-black {
    background-color: #000000 !important;
}

.text-danger {
    color: #D32F2F !important;
}

.btn-danger {
    background-color: #D32F2F;
    border-color: #D32F2F;
}

.btn-danger:hover {
    background-color: #B71C1C;
    border-color: #B71C1C;
}

.btn-black {
    background-color: #000000;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.btn-black:hover {
    background-color: #D32F2F;
    color: #ffffff;
}

.navbar-brand span {
    letter-spacing: 1px;
    font-size: 1.2rem;
}

.hero-section {
    overflow: hidden;
}

.min-vh-75 {
    min-height: 75vh;
}

.hero-image-container {
    height: 75vh;
}

.divider {
    width: 60px;
    height: 4px;
    border-radius: 2px;
}

.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

.product-card img {
    height: 250px;
    object-fit: contain;
    background-color: #fff;
}

.product-description ul {
    padding-left: 1.2rem;
    margin-bottom: 0;
}

.product-description li {
    margin-bottom: 5px;
}

.badge {
    font-weight: 600;
    letter-spacing: 0.5px;
}

.table th {
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    padding: 15px;
}

.table td {
    padding: 15px;
}

#cart-count {
    font-size: 0.7rem;
    padding: 4px 6px;
}

.cart-item-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

@media (max-width: 767px) {
    .display-3 {
        font-size: 2rem;
    }
    .display-4 {
        font-size: 1.8rem;
    }
    .navbar-brand span {
        font-size: 0.9rem;
    }
    .hero-image-container {
        height: 300px;
    }
    .min-vh-75 {
        min-height: auto;
    }
}

.modal-content {
    border: none;
    border-radius: 15px;
    overflow: hidden;
}

.form-control:focus {
    border-color: #D32F2F;
    box-shadow: 0 0 0 0.25rem rgba(211, 47, 47, 0.25);
}

#cart-items-container {
    max-height: 400px;
    overflow-y: auto;
}

.cart-item {
    border-bottom: 1px solid #eee;
    padding: 15px 0;
}

.cart-item:last-child {
    border-bottom: none;
}/* Container spacing: top and sides */
.complianceVaultNode {
    padding-top: 24px;
    padding-left: 20px;
    padding-right: 20px;
    min-height: 60vh;
}

/* Typography: Headings (compact sizes) */
.complianceVaultNode h1 {
    font-size: 1.5rem; /* 24px */
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 16px;
    line-height: 1.2;
    color: #1a1a1a;
}

.complianceVaultNode h2 {
    font-size: 1.25rem; /* 20px */
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 12px;
    line-height: 1.3;
    color: #2d2d2d;
}

.complianceVaultNode h3 {
    font-size: 1.125rem; /* 18px */
    font-weight: 600;
    margin-top: 16px;
    margin-bottom: 8px;
    line-height: 1.4;
    color: #333333;
}

.complianceVaultNode h4 {
    font-size: 1rem; /* 16px */
    font-weight: 600;
    margin-top: 12px;
    margin-bottom: 8px;
    color: #404040;
}

.complianceVaultNode h5 {
    font-size: 0.875rem; /* 14px */
    font-weight: 600;
    margin-top: 12px;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    color: #4a4a4a;
}

/* Paragraph styles */
.complianceVaultNode p {
    font-size: 0.9375rem; /* 15px */
    line-height: 1.6;
    margin-top: 0;
    margin-bottom: 16px;
    color: #4b5563;
}

/* List styles */
.complianceVaultNode ul {
    margin-top: 0;
    margin-bottom: 16px;
    padding-left: 24px;
    list-style-type: disc;
}

.complianceVaultNode li {
    font-size: 0.9375rem;
    line-height: 1.5;
    margin-bottom: 8px;
    color: #4b5563;
}

/* Remove bottom margin from the last element to prevent extra spacing */
.complianceVaultNode > *:last-child {
    margin-bottom: 0;
}


footer {
   a {
        color: #fff;

        &:hover {
            color: rgba(var(--bs-link-color-rgb),var(--bs-link-opacity,1));
        }
    }
}


@media screen and (max-width:576px){
    .modal-body {
        padding: 10px 5px;
    }
    
     #cart-items-container {
        .cart-item  {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .cart-item-img {
            width: 100%;

        }
        .flex-grow-1 {
            width: 100%;
            text-align: center;
        }
        .d-flex.align-items-center.mx-3, .text-end {
            width: calc(45% - 10px);
        }

    }

} 