body {
    font-family: 'Inter', sans-serif;
    background-color: #000;
    color: #f8f9fa;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6, .site-title {
    font-family: 'Orbitron', sans-serif;
    color: #f8f9fa;
}

.text-primary {
    color: #007bff !important; /* Bootstrap primary blue */
}

.text-accent {
    color: #00ffc0 !important; /* Neon green accent */
}

.bg-dark {
    background-color: #1a1a1a !important;
}

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

.navbar-brand .site-title {
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.navbar-brand:hover .site-title {
    color: #00ffc0;
}

.nav-link {
    color: #f8f9fa !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #00ffc0 !important;
}

.btn-primary {
    background-color: #00ffc0;
    border-color: #00ffc0;
    color: #1a1a1a;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #00e6a8;
    border-color: #00e6a8;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 255, 192, 0.3);
}

.btn-secondary {
    background-color: #343a40;
    border-color: #343a40;
    color: #f8f9fa;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #495057;
    border-color: #495057;
    color: #f8f9fa;
}

.animated-button {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.animated-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: all 0.6s ease;
    z-index: -1;
}

.animated-button:hover::before {
    left: 100%;
}

.hero-section {
    background-attachment: fixed;
    position: relative;
    padding-top: 150px;
    padding-bottom: 120px;
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 0;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-shadow: 0 0 15px rgba(0, 255, 192, 0.5);
}

.hero-text {
    font-size: clamp(1rem, 2vw, 1.25rem);
}

.hero-product-image {
    max-height: 500px;
    object-fit: cover;
    border: 3px solid #00ffc0;
    box-shadow: 0 0 20px rgba(0, 255, 192, 0.5);
}

.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #333 !important;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 255, 192, 0.2), 0 0 15px rgba(0, 255, 192, 0.4) !important;
}

.product-img {
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid #333;
}

.expert-tip-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #333 !important;
}

.expert-tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 255, 192, 0.2), 0 0 15px rgba(0, 255, 192, 0.4) !important;
}

.expert-img {
    height: 220px;
    object-fit: contain;
    border-bottom: 1px solid #333;
}

.accordion-button {
    color: #f8f9fa !important;
    background-color: #1a1a1a !important;
    border: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.accordion-button:not(.collapsed) {
    color: #00ffc0 !important;
    background-color: #000 !important;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}

.accordion-button::after {
    filter: invert(1);
}

.review-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #333 !important;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 255, 192, 0.2), 0 0 15px rgba(0, 255, 192, 0.4) !important;
}

.review-avatar {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 2px solid #00ffc0;
}

.product-review-card {
    height: 355px;
    border: 3px solid #00ffc0;
    box-shadow: 0 0 25px rgba(0, 255, 192, 0.6);
}

.product-review-card .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    transition: background-color 0.3s ease;
}

.product-review-card:hover .overlay {
    background-color: rgba(0, 0, 0, 0.85);
}

.payment-method-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #333 !important;
}

.payment-method-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 255, 192, 0.2), 0 0 15px rgba(0, 255, 192, 0.4) !important;
}

.timeline {
    position: relative;
    padding: 20px 0;
    list-style: none;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background-color: #333;
    margin-left: -1px;
}

.timeline-item {
    position: relative;
    margin-bottom: 20px;
}

.timeline-item:nth-child(odd) {
    padding-right: calc(50% + 30px);
    text-align: right;
}

.timeline-item:nth-child(even) {
    padding-left: calc(50% + 30px);
    text-align: left;
}

.timeline-icon {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -25px;
    font-size: 1.5rem;
    z-index: 1;
    border: 2px solid #00ffc0;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 30px;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 30px;
}

.timeline-content {
    background-color: #1a1a1a;
    border: 1px solid #333;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0, 255, 192, 0.2);
}

.cart-item-count {
    font-size: 0.75rem;
    vertical-align: top;
    margin-left: -5px;
}

.modal-content {
    border: 1px solid #00ffc0;
    box-shadow: 0 0 20px rgba(0, 255, 192, 0.3);
}

.form-control, .form-select {
    background-color: #000 !important;
    color: #f8f9fa !important;
    border-color: #333 !important;
}

.form-control:focus, .form-select:focus {
    border-color: #00ffc0 !important;
    box-shadow: 0 0 0 0.25rem rgba(0, 255, 192, 0.25) !important;
    background-color: #000 !important;
    color: #f8f9fa !important;
}

.cookie-banner {
    z-index: 1050;
    border: 1px solid #00ffc0;
}

#cookieSettingsModal {
    z-index: 1060;
}

/* Responsive Typography */
@media (min-width: 1024px) {
    .site-title {
        font-size: 1.8rem;
    }
    h1 {
        font-size: 2.5rem;
    }
    h2 {
        font-size: 2.2rem;
    }
    h3 {
        font-size: 2rem;
    }
    h4 {
        font-size: 1.8rem;
    }
    h5 {
        font-size: 1.6rem;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .site-title {
        font-size: 1.5rem;
    }
    h1 {
        font-size: 2.2rem;
    }
    h2 {
        font-size: 2rem;
    }
    h3 {
        font-size: 1.8rem;
    }
    h4 {
        font-size: 1.6rem;
    }
    h5 {
        font-size: 1.4rem;
    }
    .timeline::before {
        left: 20px;
    }
    .timeline-item {
        padding-left: 60px;
        text-align: left;
    }
    .timeline-item:nth-child(odd) {
        padding-right: 0;
        text-align: left;
    }
    .timeline-item:nth-child(odd) .timeline-content {
        margin-right: 0;
    }
    .timeline-icon {
        left: 20px;
        margin-left: -25px;
    }
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 30px;
    }
}

@media (max-width: 767px) {
    .navbar-brand .site-title {
        font-size: 1.25rem;
    }
    h1 {
        font-size: 1.8rem;
    }
    h2 {
        font-size: 1.6rem;
    }
    h3 {
        font-size: 1.4rem;
    }
    h4 {
        font-size: 1.25rem;
    }
    h5 {
        font-size: 1.1rem;
    }
    .hero-section .container {
        text-align: center;
    }
    .hero-product-image {
        max-height: 300px;
    }
    .navbar-collapse {
        background-color: #1a1a1a;
        padding: 1rem;
        margin-top: 0.5rem;
        border-radius: 0.5rem;
    }
    .navbar-nav .nav-item {
        margin-bottom: 0.5rem;
    }
    .navbar-nav .nav-item:last-child {
        margin-bottom: 0;
    }
    .timeline::before {
        left: 20px;
    }
    .timeline-item {
        padding-left: 60px;
        text-align: left;
    }
    .timeline-item:nth-child(odd) {
        padding-right: 0;
        text-align: left;
    }
    .timeline-item:nth-child(odd) .timeline-content {
        margin-right: 0;
    }
    .timeline-icon {
        left: 20px;
        margin-left: -25px;
    }
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 30px;
    }
}

/* Ensure buttons do not overflow */
.btn {
    white-space: normal;
    word-break: break-word;
    text-align: center;
}

.navbar-nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE and Edge */
}

.navbar-nav::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

@media (max-width: 1100px) {
    .navbar-collapse:not(.show) {
        display: none !important;
    }
    .navbar-toggler {
        display: block;
    }
    .navbar-nav {
        flex-direction: column;
        align-items: flex-start;
        overflow-x: hidden;
    }
    .navbar-nav .nav-item {
        width: 100%;
    }
}

@media (min-width: 1101px) {
    .navbar-toggler {
        display: none;
    }
    .navbar-collapse {
        display: flex !important;
        justify-content: flex-end;
    }
    .navbar-nav {
        flex-direction: row;
        align-items: center;
    }
    .navbar-nav .nav-item {
        margin-left: 1.5rem;
    }
    .navbar-nav .nav-item:first-child {
        margin-left: 0;
    }
}/*
 * New stock styles for common HTML elements within the .legalDomeBlock container.
 * These styles aim for readability and a professional, non-overly large appearance.
 */

/* --- Parent Container Styles --- */
.legalDomeBlock {
    /* Provides vertical spacing above and below the block */
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
    /* Adds horizontal padding on the sides for content, preventing it from touching edges */
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    /* Centers the block and limits its maximum width for better readability on large screens */
    max-width: 840px; /* Example max-width, adjust as needed */
    margin-left: auto;
    margin-right: auto;
    /* Sets a base font size for the block, allowing rem units to scale proportionally */
    font-size: 16px; /* Base font size for relative units (rem) */
    line-height: 1.6; /* Default line height for better readability */
    color: #fff; /* Default text color */
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; /* A common, readable sans-serif font stack */
}

/* --- Heading Styles (h1-h5) --- */
/* General heading styles */
.legalDomeBlock h1,
.legalDomeBlock h2,
.legalDomeBlock h3,
.legalDomeBlock h4,
.legalDomeBlock h5 {
    font-weight: 600; /* Semi-bold for emphasis, not overly heavy */
    line-height: 1.2; /* Tighter line height for headings */
    margin-top: 2rem; /* Space above headings */
    margin-bottom: 1rem; /* Space below headings */
    color: #fff; /* Slightly darker color for headings */
}

.legalDomeBlock h1 {
    font-size: 1.5rem; /* Moderate size for main titles */
}

.legalDomeBlock h2 {
    font-size: 1.4rem; /* Sub-sections */
}

.legalDomeBlock h3 {
    font-size: 1.3rem; /* Sub-sub-sections */
}

.legalDomeBlock h4 {
    font-size: 1.2rem; /* Minor headings */
}

.legalDomeBlock h5 {
    font-size: 1rem; /* Smallest heading, perhaps just bolder than body text */
    text-transform: uppercase; /* Optional: make h5s uppercase for a distinct look */
    letter-spacing: 0.05em; /* Optional: add letter spacing for uppercase */
    color: #fff;
}

/* --- Paragraph Styles --- */
.legalDomeBlock p {
    font-size: 1rem; /* Standard paragraph font size */
    margin-bottom: 1rem; /* Space between paragraphs */
    /* Line height is inherited from .legalDomeBlock, but can be overridden here if needed */
}

/* --- Unordered List Styles (ul, li) --- */
.legalDomeBlock ul {
    list-style-type: disc; /* Standard bullet points */
    margin-top: 1rem; /* Space above the list */
    margin-bottom: 1rem; /* Space below the list */
    padding-left: 1.5rem; /* Indentation for bullet points */
}

.legalDomeBlock li {
    margin-bottom: 0.5rem; /* Space between list items */
    /* Line height is inherited from .legalDomeBlock */
}


@media(max-width: 1023px){
    .timeline-item:nth-child(even){
        padding-left: 0;
    }
}

#about, #products, #faq, #reviews-section, #tempGuarantee, #howTochoose, #delivvaryTim{
    overflow: hidden !important;
}

.navbar {
    padding-right: 5px;
    padding-left: 5px;
}

@media (max-width: 1100px) {
    .navbar-toggler {
        display: block !important;
    }
    .navbar-expand-lg {
        justify-content: space-between;
    }
} 

.timeline-icon i{
    color: #00e6a8;
}