* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #000000;
    --secondary-color: #eb1010;
    --accent-color: #eb1010;
    --text-dark: #2C2C2C;
    --text-light: #666;
    --bg-light: #F5F5F5;
    --bg-white: #FFFFFF;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.2);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
	font-size: 1.1rem;
}

/* Header & Navigation */
.header {
    background-color: var(--primary-color);
    color: white;
    box-shadow: var(--shadow);
}

.navbar {
    padding: 0.5rem 0;
}

.navbar-brand {
    padding-left: 0;
    padding-right: 2rem;
}

.logo-img {
    height: 55px;
    width: auto;
    display: block;
}

.navbar .nav-link {
    color: white !important;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.8rem 1rem !important;
}

.navbar .nav-link:hover {
    color: var(--secondary-color) !important;
}

.navbar-toggler {
    border-color: var(--secondary-color);
    padding: 0.3rem 0.6rem;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23eb1010' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 991px) {
    .navbar-collapse {
        background-color: rgba(0, 0, 0, 0.95);
        margin-top: 0.5rem;
        padding: 1rem 0;
        border-radius: 4px;
    }
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 200px);
}

.view {
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Hero Section */
.hero {
    background-color: var(--primary-color);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-lg);
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Featured Products */
.featured-products {
    margin-bottom: 3rem;
}

.featured-products h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-weight: bold;
}

/* Products Container & Grid */
.products-container {
    background: var(--bg-white);
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

.products-container h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: bold;
}

.product-filters {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    font-weight: 600;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
    color: white !important;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 4rem 2rem;
    row-gap: 5rem;
}

.product-card {
    background: var(--bg-white);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: var(--shadow);
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 420px;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    width: 100%;
    height: 200px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-card > div:not(.product-image) {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-card .view-details {
    margin-top: auto;
    text-align: right;
}

.product-card .btn {
    margin-top: auto;
}

.product-info {
    padding: 1.5rem;
}

.product-category {
    font-size: 0.85rem;
    color: var(--secondary-color);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-category-badge {
    background-color: var(--secondary-color);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    width: fit-content;
}

.category-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--secondary-color);
    color: white;
    padding: 0.5rem 0.8rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-name {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--primary-color);
    margin: 0.5rem 0;
}

.product-description {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 1rem 0;
    line-height: 1.5;
}

.view-details {
    display: inline-block;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.95rem;
}

.view-details:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Product Detail */
.detail-container {
    background: var(--bg-white);
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

.detail-image {
    width: 100%;
    height: 300px;
    background: #f5f5f5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: white;
    cursor: pointer;
    transition: transform 0.3s ease;
    overflow: hidden;
}

.detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-info {
    padding: 0;
}

.detail-info h1 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.detail-description {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.composition {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.composition h5 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: bold;
}

.composition ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.composition li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.composition li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Product Gallery */
.product-gallery {
    width: 100%;
}

.main-image {
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    background: #f5f5f5;
    position: relative;
}

.main-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Gallery Navigation Buttons */
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    transition: all 0.3s ease;
    z-index: 10;
}

.gallery-nav:hover {
    background-color: var(--secondary-color);
    transform: translateY(-50%) scale(1.1);
}

.gallery-prev {
    left: 10px;
}

.gallery-next {
    right: 10px;
}

.gallery-thumbnails {
    width: 100%;
}

.gallery-thumb {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border: 2px solid #ddd;
    border-radius: 4px;
    opacity: 0.7;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.gallery-thumb:hover {
    opacity: 1;
}

.gallery-thumb.active {
    border-color: var(--secondary-color);
    opacity: 1;
}

/* Presentations Section */
.presentations-section {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.presentations-section h5 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: bold;
}

.presentations-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.presentations-list li {
    padding: 0.7rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: var(--text-light);
    font-weight: 500;
}

.presentations-list li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 1.2rem;
}

/* About Section */
.about-container {
    background: var(--bg-white);
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

.about-container h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: bold;
}

.about-container h3 {
    color: var(--primary-color);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.about-container p {
    line-height: 1.5;
    margin-bottom: 1rem;
}

.about-container ul {
    list-style: none;
    padding-left: 0;
}

.about-container li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
}

.about-container li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Contact Section */
.contact-container {
    background: var(--bg-white);
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

.contact-container h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: bold;
}

.contact-container h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.contact-container p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

/* Wholesale Section */
.wholesale-container {
    background: var(--bg-white);
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

.wholesale-container h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: bold;
}

.wholesale-container h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.wholesale-container h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: bold;
}

.wholesale-container h5 {
    color: var(--primary-color);
    font-weight: bold;
}

.wholesale-container p {
    line-height: 1.5;
}

.benefits-list {
    list-style: none;
    padding-left: 0;
}

.benefits-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    line-height: 1.5;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.process-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.step-number {
    min-width: 50px;
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.process-step h5 {
    margin-bottom: 0.5rem;
    margin-top: 0;
}

.process-step p {
    margin-bottom: 0;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 3rem;
}

.footer p {
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.social-links a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.social-links a:hover {
    opacity: 0.8;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 800px;
    max-height: 80vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.close:hover {
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1rem;
    }

    .product-filters {
        justify-content: center;
    }

    .featured-products h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 40px;
    }

    .hero {
        padding: 2rem 1rem;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 0.8rem;
    }

    .product-filters {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }
}

/* Shop Section */
.shop-container {
    background-color: var(--bg-light);
    min-height: 500px;
}

.shop-container h2 {
  color: var(--primary-color);
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: bold;
}

.shop-container h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-weight: bold;
}

.shop-container h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: bold;
}

.shop-container h5 {
  color: var(--primary-color);
  font-weight: bold;
}

.shop-container p {
    line-height: 1.5;
}

.benefits-list {
    list-style: none;
    padding-left: 0;
}

.benefits-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    line-height: 1.5;
}

.shop-container .alert {
    border-left: 5px solid var(--secondary-color);
    background-color: rgba(235, 16, 16, 0.05);
    padding: 1.5rem;
}

.shop-container .alert h5 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.alert-success {
    background-color: rgba(40, 167, 69, 0.1) !important;
    border-color: #28a745 !important;
}

.alert-success h5 {
    color: #28a745;
}

