:root {
    --primary: #8B4513;
    --secondary: #D2B48C;
    --accent: #F4A460;
    --light: #FFF8F0;
    --dark: #3E2723;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--light);
    color: var(--dark);
}

.navbar {
    background-color: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.section-title {
    position: relative;
    margin-bottom: 50px;
    text-align: center;
    color: var(--primary);
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--dark);
    border-color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.btn-accent {
    background-color: var(--accent);
    border-color: var(--accent);
    color: white;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-accent:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.footer {
    background: var(--dark);
    color: white;
    padding: 70px 0 0;
}

.footer a {
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: white;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

.copyright {
    padding: 20px 0;
    font-size: 14px;
}

.hero {
    background: linear-gradient(rgba(139, 69, 19, 0.7), rgba(139, 69, 19, 0.9));
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    margin-bottom: 0px;
}

.product-image {
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    max-width: 100%;
}


.benefit-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.benefit-icon {
    background-color: var(--secondary);
    color: var(--primary);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
}
.sourcing-process {
    background-color: var(--light);
    padding: 80px 0;
}

.process-step {
    text-align: center;
    padding: 30px;
    border-radius: 15px;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 20px;
    margin: 0 auto 20px;
}
.pricing-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    position: relative;
}

.pricing-card:hover {
    transform: scale(1.03);
}

.pricing-header {
    background: var(--primary);
    color: white;
    padding: 30px 20px;
    text-align: center;
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--accent);
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 12px;
    font-weight: bold;
}

.price {
    font-size: 48px;
    font-weight: bold;
    margin: 20px 0;
}

.price span {
    font-size: 16px;
    font-weight: normal;
}

.pricing-features {
    padding: 30px;
    background: white;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.feature-icon {
    color: var(--accent);
    margin-right: 10px;
}
.faq-section {
    background-color: var(--light);
    padding: 80px 0;
}

.accordion-button {
    background-color: white;
    color: var(--primary);
    font-weight: 600;
}

.accordion-button:not(.collapsed) {
    background-color: var(--secondary);
    color: var(--primary);
}

/* Blog Post Styles */
.blog-post-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.blog-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.post-meta {
    font-size: 0.9rem;
}

.tags a {
    display: inline-block;
    background: var(--secondary);
    color: var(--primary);
    padding: 5px 12px;
    border-radius: 20px;
    margin-right: 8px;
    margin-bottom: 8px;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.tags a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.pagination-wrapper nav {
    margin-top: 30px;
}

.page-numbers {
    display: inline-block;
    padding: 10px 15px;
    margin: 0 5px;
    border-radius: 8px;
    background: white;
    color: var(--primary);
    text-decoration: none;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.page-numbers.current,
.page-numbers:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.page-numbers.prev,
.page-numbers.next {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

.page-numbers.prev:hover,
.page-numbers.next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

/* Sidebar Styles */
.sidebar-widget {
    background: white;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.sidebar-widget h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--secondary);
    color: var(--primary);
}

.sidebar-widget ul {
    list-style: none;
    padding: 0;
}

.sidebar-widget li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.sidebar-widget li:last-child {
    border-bottom: none;
}

.sidebar-widget a {
    color: var(--dark);
    text-decoration: none;
    transition: all 0.3s ease;
}

.sidebar-widget a:hover {
    color: var(--primary);
    padding-left: 5px;
}

/* Comments Styles */
.comments-area {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-top: 40px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.comment-list {
    list-style: none;
    padding: 0;
}

.comment {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.comment:last-child {
    border-bottom: none;
}

.comment-meta {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.comment-author img {
    border-radius: 50%;
    margin-right: 15px;
}

.comment-content {
    margin-left: 65px;
}

.comment-reply-link {
    font-size: 0.9rem;
    color: var(--accent);
    text-decoration: none;
}

.comment-reply-link:hover {
    color: var(--primary);
}

/* Forms */
.form-control {
    border-radius: 10px;
    padding: 12px 15px;
    border: 1px solid #ddd;
}

.form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 0.25rem rgba(244, 164, 96, 0.25);
}

.btn {
    border-radius: 30px;
    padding: 10px 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .blog-post-card {
        padding: 20px;
    }
    
    .comment-content {
        margin-left: 0;
        margin-top: 15px;
    }
}

