/* Custom Color Styles */
:root {
    --primary-color: #FF9915;
    --secondary-color: #f56000;
    --highlight-color: #FAD928;
    --light-background: #FFF3E0;
}

/* General Styles */
body {
    font-family: -apple-system, system-ui, BlinkMacSystemFont;
    font-weight: 400;
    background-color: #f4f7fc;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: -apple-system, system-ui, BlinkMacSystemFont;
    font-weight: 600;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: black;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

/* Underline Effect */
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--highlight-color);
    margin-top: 8px;
}

/* Breadcrumb Styles */
.breadcrumb {
    background-color: #f9f9f9;
    border-radius: 0.5rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.breadcrumb-item a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color) !important;
    font-weight: 500;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

.breadcrumb-item i {
    font-size: 1rem;
}

.breadcrumb-item.active {
    font-weight: 600;
    color: #6c757d;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: #ced4da;
    font-weight: bold;
    padding: 0 0.5rem;
}

.breadcrumb-item-secondary {
    color: #6c757d !important;
}

/* Product Title */
.product-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #FF9915;
    text-align: center;
    margin-bottom: 20px;
}

/* Carousel Styles */
.carousel-container {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.carousel-inner img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Product Description */
.product-description-text {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.8;
}

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

.spec-links li {
    margin-bottom: 8px;
}

.spec-link {
    text-decoration: none;
    color: #FF9915;
    font-weight: 550;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.spec-link i {
    margin-right: 10px;
    font-size: 1.3rem;
}

.spec-link:hover {
    color: #f56000;
}

/* Product Details */
.product-details {
    background-color: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
}

.product-details h5 {
    font-size: 1.3rem;
    color: #f56000;
    margin-bottom: 15px;
}

.product-details ul {
    list-style: none;
    padding: 0;
    font-size: 1rem;
    color: #6c757d;
}

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

/* Unified Section Styling */
.unified-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 30px;
}

/* Related Products Section */
/* Product Cards */
.product-section {
    padding-top: 10px;
    padding-bottom: 80px;
    background-color: var(--light-background);
    border-top: 5px solid var(--primary-color);
}

.product-card {
    background-color: white;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover Effect for Product Card */
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.15);
}

/* Product Image */
.product-card img {
    border-bottom: 1px solid #e0e0e0;
    border-radius: 15px 15px 0 0;
    transition: transform 0.3s ease;
}

/* Image Hover Effect */
.product-card:hover img {
    transform: scale(1.05);
}

/* Card Content */
.product-card .card-body {
    padding: 20px;
    text-align: center;
}

/* Card Title */
.product-card .card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Card Text */
.product-card .card-text {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

/* Buy Button */
.product-card .btn {
    font-size: 0.95rem;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 25px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

/* Buy Button Hover */
.product-card .btn:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.05);
}

/* Share Buttons */
.share-buttons {
    display: flex;
    justify-content: left;
    gap: 5px;
    margin-top: 20px;
}

.share-button {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
    color: #fff;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.share-button.facebook {
    color: #1877F2;
    text-decoration: none;
}

.share-button.whatsapp {
    color: #25D366;
    text-decoration: none;
}

.share-button:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

/* Contact Us Section Styling */
.contact-us {
    font-family: 'Roboto', sans-serif;

    background-color: #f4f7fc;
    padding: 60px 20px;
    border-top: 5px solid var(--primary-color);
    padding-top: 80px;
    padding-bottom: 80px;
}

.btn-primary-custom {
    background-color: #f56000;
    border-color: #f56000;
}

.btn-primary-custom:hover {
    background-color: #f58e49;
    border-color: #f58e49;
}

.modal-header {
    background-color: var(--secondary-color);
    color: white;
}

.btn-outline-primary-custom {
    color: #f56000;
    border-color: #f56000;
}

.btn-outline-primary-custom:hover {
    color: #fff !important;
    border-color: #f58e49;
    background-color: #f58e49;
}

.social-icon {
    font-size: 1.5rem;
    color: #f1f1f1;
    transition: color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
}

/* Hover Effect for Icons */
.social-icon:hover {
    color: #ff9915;
    transform: scale(1.2);
}

#footer-sect-01{
    margin-top: 150px;
    padding-top: 0px !important;
}

#footer-sect-02{
    margin-top: 200px;
}

#footer-sect-03{
    margin-top: 200px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .carousel-item {
        height: 300px;
    }

    .about-section {
        text-align: center;
    }

    .company-story {
        text-align: center;
    }

    #footer-sect-01{
        margin-top: 450px;
        padding-top: 0px !important;
    }

    #footer-sect-02{
        margin-top: 20px;
    }

    #footer-sect-03{
        margin-top: 20px;
    }
    
    .colorSectionNav{
        color: var(--primary-color) !important;
        font-weight: bold;
    }
}
