:root {
    --primary-color: #1a1a1a;
    --accent-color: #c9a962;
    --secondary-color: #f8f8f8;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --white: #ffffff;
    --gold: #c9a962;
    --gold-dark: #a88b4a;
    
    /* Override Bootstrap default colors */
    --bs-primary: #1a1a1a;
    --bs-secondary: #c9a962;
    --bs-warning: #c9a962;
    --bs-success: #28a745;
    --bs-danger: #dc3545;
    --bs-info: #17a2b8;
    --bs-light: #f8f8f8;
    --bs-dark: #1a1a1a;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s;
}

a:hover {
    color: var(--gold);
}

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

.btn-primary:hover {
    background-color: var(--gold) !important;
    border-color: var(--gold) !important;
}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    visibility: visible;
    opacity: 1;
}

.logo-img {
    height: 100px;
    width: 130px;
}

.top-bar {
    background: var(--white);
    border-bottom: 1px solid #eee;
}

.top-icon {
    font-size: 18px;
    color: var(--text-dark);
    transition: 0.3s;
    position: relative;
    text-decoration: none;
}

.top-icon:hover {
    color: var(--gold);
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--gold);
    color: var(--white);
    font-size: 10px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-wrapper .form-control {
    border-radius: 0;
    padding: 12px 15px;
    border: 1px solid #ddd;
}

.search-wrapper .form-control:focus {
    border-color: var(--gold);
    box-shadow: none;
}

.search-wrapper .btn-dark {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.search-wrapper .btn-dark:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.nav-bar {
    background: var(--primary-color) !important;
    position: relative;
    z-index: 100;
}

.navbar {
    padding: 0;
}

.navbar-dark .navbar-nav .nav-link {
    color: var(--white) !important;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
    padding: 15px 20px !important;
    transition: all 0.3s;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--gold) !important;
}

.navbar-dark .navbar-toggler {
    border-color: var(--gold);
}

.navbar-dark .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='rgba%28201, 169, 98, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.dropdown-menu {
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 0;
    padding: 15px 0;
    background: var(--white);
}

.dropdown-item {
    padding: 10px 25px;
    color: var(--text-dark);
    font-size: 14px;
    transition: all 0.3s;
}

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

.hero-carousel {
    background: #1a1a1a;
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.carousel-float-img {
    animation: carouselFloat 3s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
}

@keyframes carouselFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.hero-carousel .carousel {
    position: relative;
}

.hero-carousel .carousel-item {
    position: relative;
    min-height: 600px;
    display: block !important;
    opacity: 1 !important;
}

.hero-carousel .carousel-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-carousel .container {
    position: relative;
    z-index: 1;
    padding-top: 60px;
    padding-bottom: 60px;
}

.hero-carousel .carousel-item .row {
    min-height: 480px;
    align-items: center;
}

.hero-carousel .carousel-img {
    max-width: 100%;
    max-height: 500px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
}

.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.3);
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    opacity: 1;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-carousel .carousel-control-prev {
    left: 30px;
}

.hero-carousel .carousel-control-next {
    right: 30px;
}

.hero-carousel .carousel-control-prev:hover,
.hero-carousel .carousel-control-next:hover {
    background: #c9a962;
    border-color: #c9a962;
}

.hero-carousel .carousel-control-prev i,
.hero-carousel .carousel-control-next i {
    color: #fff;
    font-size: 18px;
}

.hero-carousel .carousel-control-prev:hover i,
.hero-carousel .carousel-control-next:hover i {
    color: #1a1a1a;
}

.hero-carousel .carousel-indicators {
    bottom: 30px;
}

.hero-carousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.5);
    border: none;
    margin: 0 5px;
}

.hero-carousel .carousel-indicators button.active {
    background-color: #c9a962;
}

.hero-carousel .min-vh-550 {
    min-height: 550px;
}

.min-vh-500 {
    min-height: auto;
    display: flex;
    align-items: center;
}

.carousel-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--white);
    padding: 8px 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.carousel-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.carousel-title {
    font-size: 56px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.carousel-text {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 30px;
    max-width: 450px;
}

.carousel-btn {
    display: inline-block;
    padding: 15px 40px;
    background: var(--gold);
    color: var(--white) !important;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    border: 2px solid var(--gold);
}

.carousel-btn:hover {
    background: transparent !important;
    color: var(--gold) !important;
}

.service-section .service-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.service-section .service-icon i {
    color: var(--gold);
    font-size: 20px;
}

.service-section .service-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    font-family: 'Montserrat', sans-serif;
}

.service-section .service-text {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.offer-banner {
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 40px;
    overflow: hidden;
}

.offer-banner-2 {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
}

.offer-banner .offer-subtitle {
    font-size: 12px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 5px;
}

.offer-banner .offer-title {
    font-size: 28px;
    color: var(--white);
    margin-bottom: 10px;
}

.offer-banner .offer-discount {
    font-size: 18px;
    color: var(--gold);
    font-weight: 600;
}

.offer-banner img {
    max-height: 180px;
    object-fit: contain;
    transition: transform 0.5s;
}

.offer-banner:hover img {
    transform: scale(1.1);
}

.nav-pills .nav-link {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid #ddd;
    padding: 12px 30px;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 13px;
    margin: 0 5px;
    border-radius: 0;
    transition: all 0.3s;
}

.nav-pills .nav-link:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.nav-pills .nav-link.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white) !important;
}

.product-card {
    background: var(--white);
    transition: all 0.3s;
    border: 1px solid #eee;
}

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

.product-image {
    position: relative;
    overflow: hidden;
    background: #f5f5f5;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 100% !important;
    height: 250px !important;
    object-fit: contain !important;
    transition: transform 0.5s;
    display: block;
}

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

.badge-new,
.badge-sale {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
}

.badge-new {
    background: var(--primary-color);
    color: var(--gold);
}

.badge-sale {
    background: var(--gold);
    color: var(--white);
}

.product-overlay {
    position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    transition: bottom 0.3s;
    background: rgba(255,255,255,0.95);
}

.product-card:hover .product-overlay {
    bottom: 0;
}

.btn-quick-view,
.btn-add-cart {
    padding: 10px 20px;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

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

.btn-quick-view:hover {
    background: var(--gold);
}

.btn-add-cart {
    background: var(--gold);
    color: var(--white);
}

.btn-add-cart:hover {
    background: var(--gold-dark);
}

.product-info {
    padding: 20px;
    text-align: center;
}

.product-category {
    font-size: 11px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 8px;
}

.product-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.product-rating {
    margin-bottom: 10px;
}

.product-rating i {
    color: var(--gold);
    font-size: 12px;
}

.product-rating .far {
    color: #ccc;
}

.product-price {
    margin-top: 10px;
}

.price-old {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
    margin-right: 10px;
}

.price-new {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
}

.category-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    text-align: center;
}

.category-overlay h3 {
    color: var(--white);
    font-size: 24px;
    margin-bottom: 15px;
}

.category-overlay .btn {
    background: var(--gold);
    color: var(--white);
    text-transform: uppercase;
    font-size: 12px;
    padding: 10px 25px;
    border: none;
}

.category-overlay .btn:hover {
    background: var(--gold-dark);
}

.feature-box {
    transition: all 0.3s;
    border: 1px solid #eee;
}

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

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border-radius: 50%;
}

.feature-icon i {
    font-size: 28px;
    color: var(--gold);
}

.feature-box h4 {
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.feature-box p {
    color: var(--text-light);
    font-size: 14px;
}

.newsletter-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2d2d2d 100%);
}

.newsletter-section .form-control {
    border-radius: 0;
    padding: 15px;
    border: 2px solid var(--gold);
    background: transparent;
    color: var(--white);
}

.newsletter-section .form-control::placeholder {
    color: #aaa;
}

.newsletter-section .form-control:focus {
    box-shadow: none;
    border-color: var(--gold-dark);
}

.newsletter-section .btn {
    background: var(--gold);
    color: var(--white);
    border: none;
    padding: 15px 30px;
    border-radius: 0;
    text-transform: uppercase;
    font-weight: 500;
}

.newsletter-section .btn:hover {
    background: var(--gold-dark);
}

.footer-section {
    background: var(--primary-color);
    color: #aaa;
}

.footer-section h5 {
    color: var(--white);
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
}

.footer-section a {
    color: #aaa;
    transition: all 0.3s;
}

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

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

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

.footer-section .social-links {
    display: flex;
    gap: 15px;
}

.footer-section .social-links a {
    width: 40px;
    height: 40px;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: all 0.3s;
}

.footer-section .social-links a:hover {
    background: var(--gold);
    color: var(--white);
}

.footer-bottom {
    background: #111;
    color: #666;
    padding: 20px 0;
}

.btn-back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--gold);
    z-index: 99;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-back-to-top:hover {
    background: var(--gold);
    color: var(--white);
}

.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2d2d2d 100%);
    padding: 60px 0;
}

.page-header h1 {
    color: var(--white);
    font-size: 42px;
}

.page-header .breadcrumb {
    background: transparent;
}

.page-header .breadcrumb-item a {
    color: var(--gold);
}

.page-header .breadcrumb-item {
    color: var(--white);
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: #888;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.about-content p {
    color: var(--text-light);
    line-height: 1.8;
}

.policy-card {
    background: var(--white);
    border: 1px solid #eee;
    padding: 30px;
    margin-bottom: 30px;
}

.policy-card h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gold);
}

.policy-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.contact-form .form-control {
    border-radius: 0;
    padding: 15px;
    border: 1px solid #ddd;
}

.contact-form .form-control:focus {
    border-color: var(--gold);
    box-shadow: none;
}

.contact-form .btn {
    background: var(--primary-color);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 0;
    text-transform: uppercase;
    font-weight: 500;
}

.contact-form .btn:hover {
    background: var(--gold);
}

.contact-info {
    background: var(--primary-color);
    padding: 40px;
    color: var(--white);
}

.contact-info h3 {
    color: var(--white);
    margin-bottom: 30px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-info-item i {
    width: 40px;
    height: 40px;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-info-item p {
    color: #ccc;
    margin: 0;
}

@media (max-width: 991px) {
    .carousel-title {
        font-size: 40px;
    }
    
    .section-title {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .carousel-title {
        font-size: 32px;
    }
    
    .product-overlay {
        bottom: 0;
    }
    
    .category-card {
        margin-bottom: 20px;
    }
    
    .navbar-dark .navbar-nav .nav-link {
        padding: 12px 15px !important;
    }
}

.wow {
    animation-duration: 1s;
}