<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Custom CSS for CBD Shop */

:root {
    --primary-color: #4CAF50;
    --secondary-color: #2E7D32;
    --accent-color: #81C784;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --dark-bg: #343a40;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

/* Navbar Styling */
.navbar {
    background-color: white !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-weight: bold;
    color: var(--primary-color) !important;
}

.nav-link {
    color: var(--text-color) !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.nav-link.active {
    color: var(--primary-color) !important;
    font-weight: 600;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 4rem 0;
    margin-bottom: 2rem;
}

/* Cards */
.card {
    border: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    margin-bottom: 1.5rem;
}

.card:hover {
    transform: translateY(-5px);
}

.card-title {
    color: var(--primary-color);
    font-weight: 600;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

/* Footer */
footer {
    background: linear-gradient(90deg, #f8fafc 60%, #e8f5e9 100%);
    border-top: 1px solid #e0e0e0;
    color: #222;
    font-size: 1.05rem;
}

footer .footer-icon {
    color: #43a047;
    margin-right: 8px;
    font-size: 1.2em;
    vertical-align: middle;
}

footer h5 {
    color: #388e3c;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

footer a {
    color: #43a047;
    text-decoration: none;
    transition: color 0.2s;
}

footer a:hover {
    color: #1b5e20;
    text-decoration: underline;
}

footer .footer-divider {
    border-left: 2px solid #c8e6c9;
    height: 100%;
    margin: 0 2rem;
}

footer p, footer li {
    color: #222;
    opacity: 0.95;
}

footer .row &gt; div {
    border-right: 1px solid #e0e0e0;
}
footer .row &gt; div:last-child {
    border-right: none;
}

@media (max-width: 767px) {
    footer .footer-divider {
        display: none;
    }
    footer .row &gt; div {
        margin-bottom: 2rem;
    }
}

/* Product Cards */
.product-card {
    border-radius: 10px;
    overflow: hidden;
}

.product-card img {
    transition: transform 0.3s ease;
}

.product-card:hover img {
    transform: scale(1.05);
}

/* FAQ Accordion */
.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

/* Contact Form */
.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.25);
}

/* Legal Pages */
.legal-section {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 2rem 0;
    }
    
    .card {
        margin-bottom: 1rem;
    }
} </pre></body></html>