:root {
    --primary-color: #ee731b;
    --dark-color: #040303;
    --accent-color: #f9d72d;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Global Link Styles - Remove Underline */
a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

/* Header */
.header {
    background-color: var(--dark-color);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header__top {
    background-color: #1a1a1a;
    padding: 0.5rem 0;
    font-size: 0.9rem;
}

.header__logo img {
    height: 50px;
}

.header__nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__list {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav__link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav__link:hover,
.nav__link--active {
    color: var(--primary-color);
}

.header__search {
    position: relative;
    width: 250px;
}

.header-search-form {
    display: flex;
    align-items: center;
    background: #2a2a2a;
    border-radius: 25px;
    overflow: hidden;
    border: 1px solid #3a3a3a;
    transition: border-color 0.3s;
}

.header-search-form:focus-within {
    border-color: var(--primary-color);
}

.header__search input {
    flex: 1;
    padding: 0.5rem 1rem;
    border: none;
    background: transparent;
    color: white;
    outline: none;
    font-size: 0.9rem;
}

.header__search input::placeholder {
    color: #888;
}

.header-search-btn {
    background: transparent;
    border: none;
    color: #888;
    padding: 0.5rem 0.75rem;
    cursor: pointer;
    transition: color 0.3s;
}

.header-search-btn:hover {
    color: var(--primary-color);
}

/* Hero Section */
/* ==================== HERO CAROUSEL ==================== */
.hero-carousel {
    position: relative;
    overflow: hidden;
}

.hero-carousel .carousel-item {
    transition: transform 0.8s ease, opacity 0.8s ease;
}

.hero-slide {
    position: relative;
    min-height: 85vh;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    transform: scale(1.05);
    transition: transform 20s ease;
    z-index: 1;
}

.carousel-item.active .hero-bg {
    transform: scale(1);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8px);
    border-radius: 1rem;
}

.hero-content h1 {
    color: var(--primary-color);
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.8);
}

.hero-content p {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.hover-lift {
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 193, 7, 0.4) !important;
}

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    background: rgba(0, 0, 0, 0.5);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 50px;
    height: 50px;
    background-size: 100%, 100%;
}

.carousel-indicators [data-bs-target] {
    background-color: #ffc107;
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.carousel-indicators .active {
    background-color: #ff8c00;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-slide {
        min-height: 70vh;
    }

    .hero-content h1 {
        font-size: 2.5rem !important;
    }

    .hero-content p {
        font-size: 1.1rem !important;
    }
}

.btn-primary-custom {
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary-custom:hover {
    background-color: #d65e0f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(238, 115, 27, 0.4);
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.section__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section__title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
}

.about__text {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.about__features {
    margin-top: 2rem;
}

.feature__item {
    display: flex;
    align-items: start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature__icon {
    color: var(--primary-color);
    font-size: 2rem;
    width: 50px;
}

/* Categories */
.categories {
    padding: 80px 0;
}

.category__card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
    cursor: pointer;
}

.category__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(238, 115, 27, 0.2);
}

.category__icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.category__title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

/* Products */
.products {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.product__card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.product__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.product__image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product__content {
    padding: 1.5rem;
}

.product__category {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
}

.product__title {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0.5rem 0;
    color: var(--dark-color);
}

.product__description {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.product__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product__price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.btn-order {
    background-color: var(--primary-color);
    color: white;
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-order:hover {
    background-color: #d65e0f;
    transform: scale(1.05);
}

/* Partners */
.partners {
    padding: 80px 0;
}

.partner__logo {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    filter: grayscale(100%);
}

.partner__logo:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.partner__logo img {
    max-width: 100%;
    max-height: 80px;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 20px;
}

.footer__section {
    margin-bottom: 2rem;
}

.footer__title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer__list {
    list-style: none;
    padding: 0;
}

.footer__link {
    color: #ddd;
    text-decoration: none;
    display: block;
    padding: 0.3rem 0;
    transition: color 0.3s;
}

.footer__link:hover {
    color: var(--primary-color);
}

.footer__social {
    display: flex;
    gap: 1rem;
}

.social__link {
    width: 40px;
    height: 40px;
    background-color: #2a2a2a;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    transition: all 0.3s;
}

.social__link:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer__bottom {
    border-top: 1px solid #2a2a2a;
    margin-top: 2rem;
    padding-top: 2rem;
    text-align: center;
    color: #999;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 991px) {
    .nav__list {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero__title {
        font-size: 2.5rem;
    }

    .header__search {
        width: 200px;
    }
}

@media (max-width: 768px) {
    .hero__title {
        font-size: 2rem;
    }

    .hero__subtitle {
        font-size: 1.1rem;
    }
}