/* Base Styles */
:root {
    --primary-color: #8B7355; /* Antique bronze */
    --secondary-color: #333333;
    --accent-color: #C0A080;
    --light-color: #F8F5F2;
    --dark-color: #1A1A1A;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--light-color);
    color: var(--dark-color);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent-color);
    text-decoration: none;
}

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

.btn-accent:hover {
    background-color: #B09060;
    border-color: #B09060;
    color: white;
}

.btn-outline-accent {
    color: var(--accent-color);
    border-color: var(--accent-color);
    background-color: transparent;
}

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

/* Product Cards */
.white-box {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    margin-bottom: 20px;
    border: 1px solid rgba(0,0,0,0.05);
}

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

.user-bg {
    height: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f9f9f9;
}

.user-bg img {
    object-fit: contain;
    max-width: 100%;
    max-height: 100%;
    transition: transform 0.5s ease;
}

.white-box:hover .user-bg img {
    transform: scale(1.05);
}

.info-wrap {
    padding: 15px;
}

.title {
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

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

/* Category Boxes */
.catBody {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.catBody img {
    height: 80px;
    width: auto;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.catBody span {
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.catBody:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--accent-color);
}

.catBody:hover img {
    transform: scale(1.1);
}

/* Product Details */
.details_product {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-top: 20px;
}

.detail_image {
    height: 400px;
    width: 100%;
    object-fit: contain;
    background-color: #f9f9f9;
    padding: 20px;
}

@media only screen and (max-width: 768px) {
    .details_product {
        display: block;
    }
    
    .detail_image {
        height: 300px;
    }
}

/* Hero Video */
.bg-video {
    width: 100%;
    height: 70vh;
    object-fit: cover;
    display: block;
    position: relative;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin: 40px 0;
    position: relative;
}

.section-header h4 {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    display: inline-block;
    position: relative;
    padding-bottom: 15px;
}

.section-header h4:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* Responsive Adjustments */
@media (max-width: 767px) {
    .navbar-collapse {
        background-color: white;
        padding: 15px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        margin-top: 10px;
        border-radius: 5px;
    }
    
    .nav-link {
        color: var(--dark-color) !important;
        padding: 10px 0;
    }
    
    .user-bg {
        height: 150px;
    }
    
    .catBody {
        padding: 15px;
    }
    
    .catBody img {
        height: 60px;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade {
    animation: fadeIn 0.6s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

/* Utility Classes */
.text-accent {
    color: var(--accent-color) !important;
}

.bg-accent {
    background-color: var(--accent-color) !important;
}

.border-accent {
    border-color: var(--accent-color) !important;
}

/* Slick Slider Customizations */
.slick-slide {
    margin: 0 15px;
}

.slick-slide img {
    width: 100%;
    border-radius: 5px;
}

.slick-prev:before, 
.slick-next:before {
    color: var(--primary-color);
}

.slick-dots li button:before {
    color: var(--primary-color);
}

.slick-dots li.slick-active button:before {
    color: var(--accent-color);
}