/* assets/style.css */

/* Google Fonts: Inter */
body {
    font-family: 'Inter', sans-serif;
}

/* Color Palette */
:root {
    --primary-dark: #2C0707; /* Deep, dark red-brown for main background */
    --secondary-dark: #4A1010; /* Slightly lighter dark red for blocks */
    --accent-red: #E53935; /* Bright red for accents, buttons */
    --light-gray: #D1C4C4; /* Light gray for general text */
    --white: #FFFFFF;
    --gold-star: #FFD700; /* Gold for stars */
}

/* Apply colors to Tailwind classes for consistency */
.bg-primary-dark { background-color: var(--primary-dark); }
.bg-secondary-dark { background-color: var(--secondary-dark); }
.bg-accent-red { background-color: var(--accent-red); }
.text-light-gray { color: var(--light-gray); }
.text-white { color: var(--white); }
.text-accent-red { color: var(--accent-red); }
.text-yellow-400 { color: var(--gold-star); } /* For star ratings */

/* Custom styles for Material Symbols fill */
.material-symbols-outlined.fill-1 {
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
.material-symbols-outlined.fill-0 {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* Smooth scroll for anchor links */
html {
    scroll-behavior: smooth;
}

/* Remove text-decoration from buttons */
button {
    text-decoration: none !important;
}

/* Ensure input/select focus styles are consistent */
input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--accent-red);
    box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.5); /* Accent red with transparency */
}

/* General shadow for blocks */
.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.15);
}
.shadow-2xl {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.4), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
}

/* Custom styles for cart quantity input */
.cart-item-quantity {
    -moz-appearance: textfield; /* Firefox */
}
.cart-item-quantity::-webkit-outer-spin-button,
.cart-item-quantity::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Responsive adjustments for the delivery checklist arrows */
@media (max-width: 767px) {
    .delivery-step-container {
        flex-direction: column;
    }
    .delivery-step-container > span.material-symbols-outlined {
        transform: rotate(90deg);
        margin: 1rem 0;
    }
}
/* New styles for .secureTermsHub and its children */

.secureTermsHub {
    /* Padding for the main content area */
    padding-top: 3rem; /* Top padding */
    padding-left: 1.5rem; /* Left padding */
    padding-right: 1.5rem; /* Right padding */
    padding-bottom: 3rem; /* Bottom padding */
    max-width: 800px; /* Max width for readability */
    margin-left: auto; /* Center the container */
    margin-right: auto; /* Center the container */
    color: var(--light-gray); /* Default text color for the hub */
}

.secureTermsHub h1 {
    /* Heading 1 styles */
    font-size: 2rem; /* Moderate font size for h1 */
    font-weight: 700; /* Bold weight */
    margin-top: 2.5rem; /* Top margin for separation */
    margin-bottom: 1.5rem; /* Bottom margin */
    color: var(--white); /* White color for main headings */
    line-height: 1.2; /* Line height for readability */
}

.secureTermsHub h2 {
    /* Heading 2 styles */
    font-size: 1.75rem; /* Moderate font size for h2 */
    font-weight: 600; /* Semi-bold weight */
    margin-top: 2rem; /* Top margin */
    margin-bottom: 1.25rem; /* Bottom margin */
    color: var(--white); /* White color for sub-headings */
    line-height: 1.3; /* Line height */
}

.secureTermsHub h3 {
    /* Heading 3 styles */
    font-size: 1.5rem; /* Moderate font size for h3 */
    font-weight: 600; /* Semi-bold weight */
    margin-top: 1.75rem; /* Top margin */
    margin-bottom: 1rem; /* Bottom margin */
    color: var(--white); /* White color for smaller headings */
    line-height: 1.4; /* Line height */
}

.secureTermsHub h4 {
    /* Heading 4 styles */
    font-size: 1.25rem; /* Moderate font size for h4 */
    font-weight: 500; /* Medium weight */
    margin-top: 1.5rem; /* Top margin */
    margin-bottom: 0.75rem; /* Bottom margin */
    color: var(--light-gray); /* Light gray for even smaller headings */
    line-height: 1.5; /* Line height */
}

.secureTermsHub h5 {
    /* Heading 5 styles */
    font-size: 1.125rem; /* Moderate font size for h5 */
    font-weight: 500; /* Medium weight */
    margin-top: 1.25rem; /* Top margin */
    margin-bottom: 0.5rem; /* Bottom margin */
    color: var(--light-gray); /* Light gray for minor headings */
    line-height: 1.5; /* Line height */
}

.secureTermsHub p {
    /* Paragraph styles */
    font-size: 1rem; /* Base font size for paragraphs */
    line-height: 1.7; /* Increased line height for readability */
    margin-bottom: 1rem; /* Bottom margin for paragraph separation */
    color: var(--light-gray); /* Light gray for body text */
}

.secureTermsHub ul {
    /* Unordered list styles */
    list-style-type: disc; /* Default disc bullet points */
    padding-left: 1.5rem; /* Indent for bullet points */
    margin-top: 1rem; /* Top margin */
    margin-bottom: 1rem; /* Bottom margin */
    color: var(--light-gray); /* Light gray for list text */
}

.secureTermsHub ol {
    /* Ordered list styles */
    list-style-type: decimal; /* Default decimal numbering */
    padding-left: 1.5rem; /* Indent for numbers */
    margin-top: 1rem; /* Top margin */
    margin-bottom: 1rem; /* Bottom margin */
    color: var(--light-gray); /* Light gray for list text */
}

.secureTermsHub li {
    /* List item styles */
    font-size: 1rem; /* Font size for list items */
    line-height: 1.6; /* Line height for readability */
    margin-bottom: 0.5rem; /* Space between list items */
    color: var(--light-gray); /* Light gray for list item text */
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    header .flex {

        gap: 5px;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }
    #cart-items-container .flex {
        flex-wrap: wrap;
    }
    .secureTermsHub {
        padding-top: 2rem;
        padding-left: 1rem;
        padding-right: 1rem;
        padding-bottom: 2rem;
    }

    .secureTermsHub h1 {
        font-size: 1.75rem;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }

    .secureTermsHub h2 {
        font-size: 1.5rem;
        margin-top: 1.5rem;
        margin-bottom: 1rem;
    }

    .secureTermsHub h3 {
        font-size: 1.25rem;
        margin-top: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .secureTermsHub h4 {
        font-size: 1.125rem;
        margin-top: 1rem;
        margin-bottom: 0.5rem;
    }

    .secureTermsHub h5 {
        font-size: 1rem;
        margin-top: 0.75rem;
        margin-bottom: 0.4rem;
    }

    .secureTermsHub p,
    .secureTermsHub li {
        font-size: 0.9375rem; /* Slightly smaller text on mobile */
        margin-bottom: 0.75rem;
    }

    .secureTermsHub ul,
    .secureTermsHub ol {
        padding-left: 1rem;
        margin-top: 0.75rem;
        margin-bottom: 0.75rem;
    }
}
.text17 {
    height: 2rem;
    left: -3rem;
}