/* ===================================
   Page Title Section
   =================================== */
.page-title-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* ===================================
   Preloader
   =================================== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f5ece6;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
}

.loader-logo {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 3px;
    margin-bottom: 30px;
    animation: logoFade 1.5s ease-in-out infinite;
}

.loader-logo img {
    max-height: 80px;
    width: auto;
    opacity: 1 !important;
}

.loader-spinner {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto;
}

.spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spinnerRotate 1.5s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.spinner-ring:nth-child(1) {
    animation-delay: -0.45s;
    border-top-color: var(--primary-color);
}

.spinner-ring:nth-child(2) {
    animation-delay: -0.3s;
    border-top-color: var(--secondary-color);
}

.spinner-ring:nth-child(3) {
    animation-delay: -0.15s;
    border-top-color: #a1785f;
    opacity: 0.6;
}

@keyframes spinnerRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes logoFade {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* ===================================
   Global Styles
   =================================== */
:root {
    --primary-color: #a1785f;
    --secondary-color: #cdb3a1;
    --dark-color: #2c2c2c;
    --light-color: #f8f9fa;
    --white: #ffffff;
    --text-color: #555555;
    --border-color: #e0e0e0;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 2rem;
}

.section-header {
    margin-bottom: 3rem;
}

/* ===================================
   Top Bar
   =================================== */
.top-bar {
    background-color: #f5ece6;
    padding: 10px 0;
    font-size: 0.9rem;
    border-bottom: 1px solid #e8ddd4;
}

.contact-info {
    display: flex;
    gap: 20px;
    align-items: center;
}

.contact-info a {
    color: var(--dark-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.social-links {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.social-links a {
    color: var(--primary-color);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(161, 120, 95, 0.1);
}

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

/* ===================================
   Header
   =================================== */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 2px;
}

.logo img {
    max-height: 50px;
    width: auto;
    opacity: 1 !important;
    display: block;
}

.navbar-nav .nav-link {
    color: var(--dark-color);
    font-weight: 500;
    padding: 0.5rem 1.2rem !important;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 70%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.dropdown-menu {
    border: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 0.5rem 0;
}

.dropdown-item {
    padding: 0.7rem 1.5rem;
    color: var(--dark-color);
    font-weight: 500;
}

.dropdown-item:hover {
    background-color: var(--secondary-color);
    color: var(--dark-color);
}

.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.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='%23a1785f' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===================================
   Slider Section
   =================================== */
.slider-section {
    padding: 40px 0;
}

.carousel-inner,
.carousel-item {
    height: 700px;
    border-radius: 20px;
    overflow: hidden;
}

.slide-content {
    height: 100%;
    background: linear-gradient(135deg, rgba(161, 120, 95, 0.4), rgba(205, 179, 161, 0.4)), linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.slide-content::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.slide-content::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: 30%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.slide-content .container {
    height: 100%;
    position: relative;
    z-index: 1;
}

.slide-content .row {
    height: 100%;
}

.slide-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.slide-text {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 0.75rem;
    max-width: 500px;
}

.slide-content .col-lg-6 {
    padding-left: 50px;
    padding-right: 50px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    padding: 20px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
}

/* ===================================
   Buttons
   =================================== */
.btn {
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #8a6550;
    border-color: #8a6550;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(161, 120, 95, 0.3);
}

.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.btn-light {
    background-color: var(--white);
    color: var(--dark-color);
}

.btn-light:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* ===================================
   About Section
   =================================== */
.about-section {
    padding: 100px 0;
    background-color: var(--white);
}

.about-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.about-image img {
    border-radius: 15px;
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background-color: var(--primary-color);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.experience-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.experience-text {
    display: block;
    font-size: 0.9rem;
    margin-top: 5px;
}

.about-content {
    padding-left: 50px;
}

.about-text {
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

/* ===================================
   Products Section
   =================================== */
.products-section {
    padding: 100px 0;
    background-color: var(--light-color);
}

.product-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

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

.product-image {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(161, 120, 95, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-info {
    padding: 1.5rem;
}

.product-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.product-category {
    font-size: 0.9rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.product-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
}

/* ===================================
   Social Media Section
   =================================== */
.social-section {
    padding: 100px 0;
    background-color: var(--white);
}

.social-content {
    padding-right: 50px;
}

.instagram-grid {
    border-radius: 15px;
    overflow: hidden;
}

.instagram-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

.instagram-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: var(--transition);
}

.instagram-item:hover img {
    transform: scale(1.1);
}

.instagram-item::after {
    content: '\f16d';
    font-family: 'Font Awesome 6 Brands';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-size: 2rem;
    opacity: 0;
    transition: var(--transition);
}

.instagram-item:hover::after {
    opacity: 1;
}

/* ===================================
   Catalog Section
   =================================== */
.catalog-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.catalog-card {
    background-color: var(--white);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.catalog-image img {
    border-radius: 15px;
}

.catalog-content {
    padding-left: 50px;
}

.catalog-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.catalog-features li {
    padding: 10px 0;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.catalog-features i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background-color: #f5ece6;
    color: var(--dark-color);
    padding: 80px 0 0;
    border-top: 1px solid #e8ddd4;
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.footer-logo img {
    max-height: 60px;
    width: auto;
    opacity: 1 !important;
    display: block;
}

.footer-about {
    color: var(--text-color);
    line-height: 1.8;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

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

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

.footer-links a {
    color: var(--text-color);
    transition: var(--transition);
}

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

.footer-newsletter-text {
    color: var(--text-color);
    margin-bottom: 1rem;
}

.newsletter-form .form-control {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    color: var(--dark-color);
    padding: 12px 20px;
    border-radius: 50px 0 0 50px;
}

.newsletter-form .form-control:focus {
    background-color: var(--white);
    border-color: var(--primary-color);
    box-shadow: none;
    color: var(--dark-color);
}

.newsletter-form .form-control::placeholder {
    color: rgba(85, 85, 85, 0.5);
}

.newsletter-form .btn {
    border-radius: 0 50px 50px 0;
    padding: 12px 25px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(161, 120, 95, 0.1);
    color: var(--primary-color);
}

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

.footer-bottom {
    background-color: #e8ddd4;
    margin-top: 50px;
    padding: 25px 0;
}

.copyright {
    color: var(--text-color);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.footer-bottom-links a {
    color: var(--text-color);
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 991px) {
    .slide-title {
        font-size: 1.8rem;
    }

    .slide-text {
        font-size: 0.9rem;
    }

    .slide-content .col-lg-6 {
        padding-left: 30px;
        padding-right: 30px;
    }

    .about-content,
    .social-content,
    .catalog-content {
        padding-left: 0;
        margin-top: 30px;
    }

    .section-title {
        font-size: 2rem;
    }

    .catalog-card {
        padding: 30px;
    }
}

@media (max-width: 767px) {
    .contact-info {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .social-links {
        justify-content: flex-start;
        margin-top: 10px;
    }

    .carousel-inner,
    .carousel-item {
        height: 400px;
    }

    .slide-title {
        font-size: 2rem;
    }

    .slide-text {
        font-size: 0.9rem;
    }

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

    .category-subtitle {
        font-size: 1.1rem;
    }

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

    .category-stats {
        gap: 20px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .products-grid-section {
        padding: 60px 0;
    }

    .product-detail-section {
        padding: 60px 0;
    }

    .product-gallery {
        position: static;
        margin-bottom: 40px;
    }

    .product-info-detail {
        padding-left: 0;
    }

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

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

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

    .product-actions .btn {
        width: 100%;
    }

    .product-specs-section,
    .related-products-section {
        padding: 60px 0;
    }

    .specs-card {
        padding: 20px;
    }
}

/* ===================================
   Animations
   =================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.8s ease forwards;
}

/* ===================================
   Smooth Scroll
   =================================== */
html {
    scroll-behavior: smooth;
}

/* ===================================
   Selection Style
   =================================== */
::selection {
    background-color: var(--primary-color);
    color: var(--white);
}

::-moz-selection {
    background-color: var(--primary-color);
    color: var(--white);
}

/* ===================================
   About Hero Section
   =================================== */
.about-hero-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--white);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.hero-text {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
}

.about-hero-image {
    position: relative;
}

.experience-badge-large {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background-color: var(--primary-color);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.experience-badge-large .experience-number {
    display: block;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge-large .experience-text {
    display: block;
    font-size: 1.1rem;
    margin-top: 10px;
}

/* ===================================
   Story Section
   =================================== */
.story-section {
    padding: 100px 0;
    background-color: var(--white);
}

.story-content h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.story-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-color);
}

.story-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ===================================
   Mission & Vision Section
   =================================== */
.mission-vision-section {
    padding: 100px 0;
    background-color: var(--light-color);
}

.mission-card,
.vision-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: var(--transition);
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--white);
}

.mission-card h3,
.vision-card h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.mission-card p,
.vision-card p {
    color: var(--text-color);
    line-height: 1.7;
}

/* ===================================
   Values Section
   =================================== */
.values-section {
    padding: 100px 0;
    background-color: var(--white);
}

.value-card {
    background-color: var(--light-color);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--white);
}

.value-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-color);
    line-height: 1.6;
}

/* ===================================
   Team Section
   =================================== */
.team-section {
    padding: 100px 0;
    background-color: var(--light-color);
}

.team-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.team-image {
    height: 250px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-info {
    padding: 25px;
    text-align: center;
}

.team-info h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.team-position {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-bio {
    color: var(--text-color);
    line-height: 1.6;
    font-size: 0.9rem;
}

/* ===================================
   CTA Section
   =================================== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* ===================================
   Breadcrumb Section
   =================================== */
.breadcrumb-section {
    padding: 40px 0;
    background-color: var(--light-color);
}

.breadcrumb {
    background-color: transparent;
    padding: 0;
    margin: 0;
}

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

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

.breadcrumb-item.active {
    color: var(--primary-color);
    font-weight: 600;
}

/* ===================================
   Category Hero Section
   =================================== */
.category-hero-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--white);
}

.category-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.category-subtitle {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.category-description {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.category-stats {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    margin-top: 5px;
    opacity: 0.8;
}

.category-hero-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* ===================================
   Products Grid Section
   =================================== */
.products-grid-section {
    padding: 100px 0;
    background-color: var(--white);
}

.product-features {
    margin: 1rem 0;
}

.feature-tag {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--dark-color);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-right: 8px;
    margin-bottom: 8px;
}

/* ===================================
   Product Detail Section
   =================================== */
.product-detail-section {
    padding: 80px 0;
    background-color: var(--white);
}

.product-gallery {
    position: sticky;
    top: 100px;
}

.main-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.thumbnail {
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid #ddd;
    height: 80px;
    object-fit: cover;
}

.thumbnail:hover {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

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

.product-category-badge {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--dark-color);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.product-title-detail {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.product-price-detail .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.product-rating {
    margin: 1.5rem 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.stars {
    color: #ffc107;
}

.rating-text {
    color: var(--text-color);
    font-size: 0.9rem;
}

.product-description {
    margin: 2rem 0;
}

.product-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
}

.product-features h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

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

.product-features li {
    padding: 8px 0;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-features i {
    color: var(--primary-color);
    font-size: 1rem;
}

.product-actions {
    margin-top: 3rem;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* ===================================
   Product Specs Section
   =================================== */
.product-specs-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

.specs-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(161, 120, 95, 0.1);
}

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

.thumbnail {
    cursor: pointer;
    transition: all 0.3s ease;
}

.main-product-image {
    cursor: pointer;
    transition: all 0.3s ease;
    height: 400px;
    object-fit: cover;
}

.main-product-image:hover {
    opacity: 0.9;
}

.specs-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(161, 120, 95, 0.1);
    transition: all 0.2s ease;
}

.spec-item:hover {
    background-color: rgba(161, 120, 95, 0.05);
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 8px;
}

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

.spec-label {
    font-weight: 600;
    color: var(--dark-color);
    font-size: 0.95rem;
}

.spec-value {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.95rem;
}

/* ===================================
   Related Products Section
   =================================== */
.related-products-section {
    padding: 80px 0;
    background-color: var(--white);
}

/* ===================================
   Contact Information Section
   =================================== */
.contact-info-section {
    padding: 40px 0;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.contact-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.contact-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.contact-card:hover::before {
    opacity: 1;
}

.contact-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.contact-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    margin-top: 0;
}

.contact-content p {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.contact-card a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-card a:hover {
    color: var(--secondary-color);
}

/* ===================================
   Contact Form Section
   =================================== */
.contact-form-section {
    padding: 40px 0;
}

.contact-form-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.contact-form-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.contact-form-card {
    padding: 2.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-form-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.contact-form-card:hover::before {
    opacity: 1;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-label i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background-color: #ffffff;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(161, 110, 79, 0.25);
    outline: none;
}

.form-control:hover {
    border-color: #ced4da;
}

.btn-modern {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    width: 100%;
    justify-content: center;
}

.btn-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(161, 110, 79, 0.4);
    color: white;
}

.btn-modern i {
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-title,
    .contact-form-title {
        font-size: 2rem;
    }

    .contact-card,
    .contact-form-card {
        padding: 1.5rem;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .form-control {
        padding: 0.625rem 0.875rem;
    }

    .btn-modern {
        padding: 0.75rem 1.5rem;
    }
}

/* ===================================
   Custom Dropdown Styles
   =================================== */
.dropdown-item.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white !important;
    border-radius: 8px;
    
    box-shadow: 0 2px 8px rgba(161, 110, 79, 0.3);
}

.dropdown-item.active:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white !important;
}