:root {
    --primary-orange: #FF6B35;
    --light-orange: #FFF5F0;
    --dark-brown: #3E2723;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Header Styles */
.top-bar {
    background-color: var(--dark-brown);
    color: white;
    padding: 8px 0;
    font-size: 13px;
}

.navbar {
    background-color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 0px 0;
}

.navbar-brand {
    font-size: 24px;
    font-weight: bold;
    color: var(--dark-brown) !important;
}

.nav-link {
    color: var(--dark-brown) !important;
    font-weight: 600;
    margin: 0 10px;
    transition: color 0.3s;
	    font-size: 15px;
    text-align: center;
}

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

.search-box {
    max-width: 500px;
}

/* Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-section .carousel {
    position: relative;
}

.hero-slide-container {
    position: relative;
    width: 100%;
    min-height: 800px;
}

.hero-slide-image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.min-vh-50 {
    min-height: 500px;
}

.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: white;
}

.hero-content h1 {
    color: white;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    margin-bottom: 25px;
}

.hero-section .carousel-control-prev,
.hero-section .carousel-control-next {
    z-index: 10;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
}

.hero-section .carousel-control-prev {
    left: 20px;
}

.hero-section .carousel-control-next {
    right: 20px;
}

.hero-section .carousel-control-prev:hover,
.hero-section .carousel-control-next:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.3);
}

.hero-section .carousel-indicators {
    z-index: 10;
    margin-bottom: 20px;
}

.hero-section .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid white;
}

.hero-section .carousel-indicators button.active {
    background: var(--primary-orange);
}

.hero-image {
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .hero-slide-container {
        min-height: 400px;
    }
    
    .min-vh-50 {
        min-height: 400px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
}

/* Category Icons */
.category-icons {
    padding: 40px 0;
    background-color: white;
}

.category-slider-wrapper {
    position: relative;
    overflow: hidden;
    padding: 0 0px;
}

.category-slider {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
    padding: 10px 0;
    width: 100%;
    will-change: transform;
}

.category-slide {
    flex: 0 0 calc(16.666% - 17px); /* 6 item per row (100% / 6) */
    min-width: 120px;
    flex-shrink: 0;
    box-sizing: border-box;
}

.category-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-orange);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.category-slider-btn:hover {
    background: var(--dark-brown);
    transform: translateY(-50%) scale(1.1);
}

.category-slider-prev {
    left: 0;
}

.category-slider-next {
    right: 0;
}

.category-slider-btn i {
    font-size: 1.2rem;
}

@media (max-width: 1200px) {
    .category-slide {
        flex: 0 0 calc(20% - 16px); /* 5 item per row */
    }
}

@media (max-width: 992px) {
    .category-slide {
        flex: 0 0 calc(25% - 15px); /* 4 item per row */
    }
}

@media (max-width: 768px) {
    .category-slider-wrapper {
        padding: 0 40px;
    }
    
    .category-slide {
        flex: 0 0 calc(33.333% - 14px) !important; /* 3 item per row */
        width: calc(33.333% - 14px) !important;
        min-width: calc(33.333% - 14px) !important;
        max-width: calc(33.333% - 14px) !important;
    }
    
    .category-slider-btn {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 576px) {
    .category-slider-wrapper {
        padding: 0 0px;
    }
    
    .category-slide {
        flex: 0 0 calc(33.333% - 14px) !important; /* 3 item per row - mobilde de 3'lü */
        width: calc(33.333% - 14px) !important;
        min-width: calc(33.333% - 14px) !important;
        max-width: calc(33.333% - 14px) !important;
    }
    
    .category-slider-btn {
        width: 32px;
        height: 32px;
    }
    
    .category-slider-btn i {
        font-size: 0.9rem;
    }
}

.category-item {
    text-align: center;
    margin-bottom: 20px;
    cursor: pointer;
    transition: transform 0.3s;
}

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

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(to bottom, #FFE5D9 0%, #FFF5F0 50%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-size: 2rem;
    overflow: hidden;
    position: relative;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.category-icon .category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.category-icon .category-emoji {
    font-size: 2rem;
}

.category-item {
    text-align: center;
    margin-bottom: 20px;
    cursor: pointer;
    transition: transform 0.3s;
}

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

.category-item:hover .category-icon {
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.category-name {
    font-size: 14px;
    color: var(--dark-brown);
    font-weight: 500;
    margin-top: 8px;
	display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.category-item a {
    color: inherit;
    text-decoration: none;
}

.category-item a:hover {
    color: var(--primary-orange);
}

/* Category Products Section */
.category-products-section {
    padding: 40px 0;
}

.category-products-section:first-of-type {
    padding-top: 60px;
}

.category-products-section .section-title {
    margin: 0;
    padding-bottom: 15px;
}

.category-products-section .d-flex.justify-content-between {
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.category-products-section .d-flex.justify-content-between .btn {
    margin-top: 10px;
}

@media (max-width: 768px) {
    .category-products-section .d-flex.justify-content-between {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .category-products-section .d-flex.justify-content-between .btn {
        margin-top: 15px;
        width: 100%;
    }
}

/* Section Titles */
.section-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--dark-brown);
    margin: 40px 0 30px;
    position: relative;
    padding-bottom: 15px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-orange);
}

/* Product Card */
.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s;
    height: 100%;
}

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

.product-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    background-color: var(--light-orange);
}

.product-info {
    padding: 15px;
}

.product-title {
    font-size: 15px;
    color: var(--dark-brown);
    margin-bottom: 8px;
	text-align: center;
    font-weight: 600;
}

.product-rating {
    color: #FFB800;
    font-size: 14px;
    margin-bottom: 10px;
}

.product-price {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--dark-brown);
    margin-bottom: 12px;
}

.btn-add-cart {
    background-color: var(--primary-orange);
    color: white;
    border: none;
    padding: 10px;
    width: 100%;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-add-cart:hover {
    background-color: #E55A2B;
    transform: scale(1.02);
}

/* Banner Section */
.promo-banner {
    background: linear-gradient(135deg, var(--primary-orange) 0%, #FF8C5A 100%);
    color: white;
    padding: 80px 0;
    margin: 60px 0;
    border-radius: 15px;
    text-align: center;
}

.promo-banner h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.promo-banner p {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* Footer */
.footer {
    background-color: #F5F5F5;
    padding: 50px 0 20px;
    margin-top: 60px;
}

.footer h5 {
    color: var(--dark-brown);
    font-weight: bold;
    margin-bottom: 20px;
}

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

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.footer ul li a:hover {
    color: var(--primary-orange);
}

.footer-bottom {
    background-color: var(--dark-brown);
    color: white;
    padding: 20px 0;
    margin-top: 30px;
    text-align: center;
}

.feature-box {
    text-align: center;
    padding: 30px 20px;
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-orange);
    margin-bottom: 15px;
}

.feature-title {
    font-weight: bold;
    color: var(--dark-brown);
    margin-bottom: 8px;
}

.feature-text {
    color: #666;
    font-size: 14px;
}

/* Instagram Badge */
.instagram-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--dark-brown);
}

/* Newsletter */
.newsletter {
    background-color: var(--light-orange);
    padding: 40px 0;
    margin: 60px 0;
}

.newsletter h3 {
    color: var(--dark-brown);
    margin-bottom: 20px;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input {
    border: 1px solid #ddd;
    padding: 12px 20px;
    border-radius: 25px 0 0 25px;
}

.newsletter-btn {
    background-color: var(--primary-orange);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 0 25px 25px 0;
    font-weight: 600;
}

/* Top Banner */
.top-banner {
    background-color: var(--primary-orange);
    color: white;
    padding: 10px 0;
    font-size: 14px;
    font-weight: 600;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-orange) 0%, #FF8C5A 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    margin-bottom: 60px;
}

.page-header-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.page-header .breadcrumb {
    background: transparent;
    justify-content: center;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    color: white;
}

.page-header .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.8);
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: black;
}

/* Content Page Styles */
.content-page {
    padding: 40px 0 80px;
}

.content-text {
    padding: 20px;
}

.content-title {
    font-size: 2rem;
    font-weight: bold;
    color: var(--dark-brown);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.content-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-orange);
}

.content-description {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.content-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.content-list li {
    padding: 10px 0;
    color: #666;
    font-size: 1.05rem;
}

.content-list li i {
    color: var(--primary-orange);
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--light-orange) 0%, #FFE5D9 100%);
    padding: 60px 40px;
    border-radius: 15px;
    margin: 60px 0;
}

.stat-box {
    padding: 20px;
}

.stat-icon {
    font-size: 3rem;
    color: var(--primary-orange);
    margin-bottom: 15px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--dark-brown);
    margin-bottom: 10px;
}

.stat-label {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

/* Mission Vision */
.mission-vision-box {
    background-color: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    height: 100%;
    transition: all 0.3s;
}

.mission-vision-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.mv-icon {
    font-size: 3rem;
    color: var(--primary-orange);
    margin-bottom: 20px;
}

.mv-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--dark-brown);
    margin-bottom: 15px;
}

.mv-text {
    color: #666;
    line-height: 1.8;
    font-size: 1rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-orange) 0%, #FF8C5A 100%);
    padding: 80px 0;
    margin: 60px 0 0 0;
}

.cta-title {
    color: white;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.cta-description {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-cta {
    background-color: white;
    color: var(--primary-orange);
    padding: 15px 50px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 50px;
    border: none;
    transition: all 0.3s;
}

.btn-cta:hover {
    background-color: var(--dark-brown);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Contact Page */
.contact-page {
    padding: 40px 0 80px;
}

.contact-form-wrapper,
.contact-info-wrapper {
    padding: 40px;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.contact-section-title {
    font-size: 2rem;
    font-weight: bold;
    color: var(--dark-brown);
    margin-bottom: 15px;
}

.contact-section-description {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-input {
    border: 2px solid #e0e0e0;
    padding: 12px 20px;
    border-radius: 8px;
    transition: all 0.3s;
}

.contact-input:focus {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.15);
}

.btn-contact-submit {
    background-color: var(--primary-orange);
    color: white;
    border: none;
    padding: 15px 50px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 8px;
    transition: all 0.3s;
}

.btn-contact-submit:hover {
    background-color: #E55A2B;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

/* Contact Info */
.contact-info-list {
    margin-top: 30px;
}

.contact-info-item {
    display: flex;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.contact-info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, #FF8C5A 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--dark-brown);
    margin-bottom: 8px;
}

.contact-details p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.contact-details a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-details a:hover {
    color: var(--primary-orange);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background-color: var(--light-orange);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange);
    font-size: 1.3rem;
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    background-color: var(--primary-orange);
    color: white;
    transform: translateY(-3px);
}

/* Map Section */
.map-section {
    margin: 60px 0;
}

.map-wrapper iframe {
    width: 100%;
    border-radius: 15px;
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background-color: #F8F9FA;
}

.faq-accordion .accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.faq-accordion .accordion-button {
    background-color: white;
    color: var(--dark-brown);
    font-weight: 600;
    padding: 20px 25px;
    font-size: 1.05rem;
}

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

.faq-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.faq-accordion .accordion-body {
    padding: 20px 25px;
    color: #666;
    line-height: 1.8;
}

/* Product Detail Page */
.product-detail-section {
    padding: 40px 0;
}

.product-images .main-image {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    padding: 20px;
    background-color: #FAFAFA;
}

.product-images .main-image img {
    width: 100%;
    height: auto;
}

.thumbnail-img {
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s;
    opacity: 0.7;
}

.thumbnail-img:hover,
.thumbnail-img.active {
    border-color: var(--primary-orange);
    opacity: 1;
}

.product-detail-info {
    padding-left: 30px;
}

.product-brand {
    color: #999;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-detail-title {
    font-size: 2rem;
    font-weight: bold;
    color: var(--dark-brown);
    margin-bottom: 15px;
}

.product-detail-price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-orange);
}

.wishlist-btn {
    color: var(--primary-orange);
    font-size: 1.5rem;
    text-decoration: none;
}

.wishlist-btn:hover {
    color: #E55A2B;
}

/* Gram Selection */
.gram-selection .gram-buttons {
    width: 100%;
}

.btn-outline-orange {
    border: 2px solid var(--primary-orange);
    color: var(--primary-orange);
    font-weight: 600;
    padding: 10px 25px;
}

.btn-outline-orange:hover,
.btn-check:checked + .btn-outline-orange {
    background-color: var(--primary-orange);
    color: white;
}

/* Additional Products */
.additional-products {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    background-color: #FAFAFA;
}

.additional-product-item {
    padding: 15px;
    margin-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
}

.additional-product-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.form-check-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    width: 100%;
}

.addon-image {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 15px;
}

.addon-text {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.addon-name {
    font-weight: 500;
    color: var(--dark-brown);
    margin-bottom: 3px;
}

.addon-price {
    color: var(--primary-orange);
    font-weight: bold;
}

/* Product Actions */
.product-actions {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.qty-btn {
    background-color: #F5F5F5;
    border: none;
    padding: 12px 20px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.qty-btn:hover {
    background-color: var(--light-orange);
}

.qty-input {
    border: none;
    text-align: center;
    width: 60px;
    font-weight: bold;
    padding: 10px;
}

.qty-input:focus {
    outline: none;
}

.btn-add-to-cart {
    flex: 1;
    background-color: var(--primary-orange);
    color: white;
    border: none;
    padding: 12px 40px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-add-to-cart:hover {
    background-color: #E55A2B;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

/* Product Features */
.product-features {
    background-color: #F8F9FA;
    padding: 20px;
    border-radius: 10px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #666;
}

.feature-item i {
    color: var(--primary-orange);
    font-size: 1.5rem;
}

/* Product Accordion */
.product-accordion {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
}

.product-accordion .accordion-item {
    border: none;
    border-bottom: 1px solid #e0e0e0;
}

.product-accordion .accordion-item:last-child {
    border-bottom: none;
}

.product-accordion .accordion-button {
    background-color: white;
    color: var(--dark-brown);
    font-weight: 600;
    padding: 18px 20px;
}

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

.product-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.product-accordion .accordion-body {
    padding: 20px;
}

/* Product Tabs */
.product-tabs {
    border-bottom: 2px solid #e0e0e0;
}

.product-tabs .nav-link {
    color: #666;
    font-weight: 600;
    padding: 15px 30px;
    border: none;
    border-bottom: 3px solid transparent;
}

.product-tabs .nav-link:hover {
    color: var(--primary-orange);
}

.product-tabs .nav-link.active {
    color: var(--primary-orange);
    border-bottom-color: var(--primary-orange);
    background-color: transparent;
}

.product-tab-content {
    padding: 30px 0;
}

.tab-content-inner {
    padding: 20px;
}

.tab-content-inner h4 {
    color: var(--dark-brown);
    font-weight: bold;
    margin-bottom: 20px;
}

.tab-content-inner h5 {
    color: var(--dark-brown);
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 10px;
}

.tab-content-inner ul {
    margin-left: 20px;
}

.tab-content-inner ul li {
    margin-bottom: 8px;
    color: #666;
}

/* Reviews */
.review-summary {
    background-color: #F8F9FA;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.review-average .average-score {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-orange);
    display: block;
    margin-bottom: 10px;
}

.review-average .stars {
    color: #FFB800;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.review-count {
    color: #666;
    font-size: 14px;
}

.review-item {
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
}

.review-item:last-child {
    border-bottom: none;
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.review-header strong {
    color: var(--dark-brown);
}

.review-date {
    color: #999;
    font-size: 14px;
}

.review-rating {
    color: #FFB800;
    margin-bottom: 10px;
}

.review-text {
    color: #666;
    line-height: 1.6;
}

/* Similar Products */
.similar-products {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #e0e0e0;
}

/* Responsive */
@media (max-width: 992px) {
    .product-detail-info {
        padding-left: 0;
        margin-top: 30px;
    }

    .product-detail-title {
        font-size: 1.5rem;
    }

    .product-detail-price {
        font-size: 2rem;
    }

    .product-actions {
        flex-direction: column;
    }

    .quantity-selector {
        justify-content: center;
    }
}

/* Category Page Styles */
.breadcrumb-section {
    background-color: #F8F9FA;
    padding: 20px 0;
    margin-bottom: 30px;
}

.breadcrumb {
    background: transparent;
    margin-bottom: 0;
}

.breadcrumb-item a {
    color: var(--dark-brown);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--primary-orange);
}

.category-page {
    padding: 30px 0 60px;
}

/* Sidebar Filter */
.sidebar-filter {
    background-color: #F8F9FA;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.filter-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--dark-brown);
    margin-bottom: 20px;
}

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

.category-list li {
    margin-bottom: 12px;
}

.category-list li a {
    color: #666;
    text-decoration: none;
    transition: all 0.3s;
    display: block;
    padding: 8px 12px;
    border-radius: 6px;
}

.category-list li a:hover,
.category-list li a.active {
    color: var(--primary-orange);
    background-color: var(--light-orange);
    padding-left: 20px;
}

.filter-select {
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 6px;
    font-size: 14px;
}

/* Category Header */
.category-header {
    border-bottom: 2px solid var(--light-orange);
    padding-bottom: 20px;
}

.category-title {
    font-size: 2rem;
    font-weight: bold;
    color: var(--dark-brown);
    margin-bottom: 10px;
}

.category-description {
    color: #666;
    font-size: 1rem;
}

/* Pagination */
.pagination {
    margin-top: 40px;
}

.page-link {
    color: var(--dark-brown);
    border: 1px solid #ddd;
    padding: 10px 18px;
    margin: 0 3px;
    border-radius: 6px;
}

.page-link:hover {
    background-color: var(--light-orange);
    color: var(--primary-orange);
    border-color: var(--primary-orange);
}

.page-item.active .page-link {
    background-color: var(--primary-orange);
    border-color: var(--primary-orange);
    color: white;
}

.page-item.disabled .page-link {
    background-color: #F8F9FA;
    border-color: #ddd;
    color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .promo-banner h2 {
        font-size: 1.8rem;
    }
    
    .category-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .sidebar-filter {
        margin-bottom: 30px;
    }

    .category-title {
        font-size: 1.5rem;
    }
}