/* Base Styles */
:root {
    --primary-color: #a38f78;
    --primary-light: #d8c9b8;
    --primary-dark: #7a6854;
    --secondary-color: #e2d5c5;
    --light-color: #f9f7f4;
    --dark-color: #2a2a2a;
    --success-color: #5cb85c;
    --danger-color: #d9534f;
    --warning-color: #f0ad4e;
    --info-color: #5bc0de;
    --white: #ffffff;
    --black: #000000;
    --gray-light: #f8f9fa;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Poppins', sans-serif;
}

body {
    font-family: var(--font-secondary);
    color: var(--dark-color);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.3;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Modern Buttons */
.btn {
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Hero Section */
.hero-section {
    height: 90vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--white);
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3));
}
.hero-content {
    max-width: 600px;
    padding: 2rem;
    background: rgba(0,0,0,0.5);
    border-radius: 15px;
    backdrop-filter: blur(5px);
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.video-background video {
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-down {
    display: block;
    width: 40px;
    height: 40px;
    border: 2px solid var(--white);
    border-radius: 50%;
    text-align: center;
    line-height: 36px;
    color: var(--white);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Section Styling */
.section-title {
    margin-bottom: 60px;
}

.section-title span {
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.divider {
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 15px auto 0;
}

.py-6 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

/* Modern Product Cards */
.product-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
}

.product-badge .badge {
    margin-right: 5px;
    font-weight: 500;
    font-size: 11px;
    padding: 5px 10px;
    border-radius: 4px;
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.product-image img {
    transition: transform 0.5s ease;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.quick-view {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    text-align: center;
    padding: 10px;
    transition: all 0.3s ease;
}

.product-card:hover .quick-view {
    bottom: 0;
}

.product-category {
    font-size: 12px;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
}

.product-title {
    font-size: 16px;
    margin-bottom: 10px;
}

.product-title a {
    color: var(--dark-color);
}

.product-description {
    font-size: 13px;
    margin-bottom: 15px;
}

.product-price {
    font-weight: 700;
}

.current-price {
    color: var(--primary-color);
    font-size: 18px;
}

.compare-price {
    color: var(--gray);
    font-size: 14px;
    text-decoration: line-through;
    margin-left: 5px;
}

.product-rating {
    margin-bottom: 10px;
}

/* Category Cards */
.category-card {
    display: block;
    position: relative;
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-image .overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.category-card .card-body {
    z-index: 2;
}

/* Benefits Section */
.benefits-image {
    position: relative;
    padding: 15px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.benefits-image img {
    border-radius: 5px;
    width: 100%;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background-color: var(--primary-color);
    color: var(--white);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.experience-badge .inner {
    text-align: center;
}

.experience-badge .number {
    font-size: 24px;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.experience-badge .text {
    font-size: 12px;
    display: block;
    margin-top: 5px;
}

.benefits-list {
    margin-top: 30px;
}

.benefit-item {
    display: flex;
    margin-bottom: 30px;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-light);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-right: 20px;
    flex-shrink: 0;
}

.benefit-content h5 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.benefit-content p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 0;
}

/* Testimonials */
.testimonial-slider {
    position: relative;
    padding: 0 15px;
}

.testimonial-item {
    padding: 0 15px;
}

.testimonial-content {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    padding-left: 30px;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 50px;
    color: var(--primary-light);
    line-height: 1;
    font-family: var(--font-primary);
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    margin-right: 15px;
}

.testimonial-author h6 {
    margin-bottom: 5px;
    font-size: 16px;
}

.rating {
    color: var(--warning-color);
}
/* Modern Forms */
.form-control {
    border-radius: 8px;
    padding: 0.75rem 1rem;
    border: 1px solid #e0e0e0;
}
.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(163, 143, 120, 0.25);
}


/* Newsletter */
.newsletter-form {
    height: 60px;
    border-radius: 0;
    border: none;
    padding-left: 20px;
}

.newsletter-form .btn {
    height: 60px;
    border-radius: 0;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .hero-section {
        min-height: 600px;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .py-6 {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 70vh;
        min-height: 500px;
    }
    
    .hero-content {
        text-align: center;
        padding: 1.5rem;
    }
}
@media (max-width: 767.98px) {
    .hero-section {
        min-height: 500px;
        text-align: center;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section p.lead {
        font-size: 1rem;
    }
    
    .benefit-item {
        flex-direction: column;
    }
    
    .benefit-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

@media (max-width: 575.98px) {
    .hero-section {
        min-height: 400px;
    }
    
    .hero-section h1 {
        font-size: 1.8rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .product-card {
        margin-bottom: 20px;
    }
}

/* Slick Slider Customization */
.slick-slider {
    position: relative;
}

.slick-dots {
    position: absolute;
    bottom: -40px;
    left: 0;
    right: 0;
    text-align: center;
    padding: 0;
    margin: 0;
    list-style: none;
}

.slick-dots li {
    display: inline-block;
    margin: 0 5px;
}

.slick-dots li button {
    font-size: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    border: none;
    padding: 0;
    transition: all 0.3s ease;
}

.slick-dots li.slick-active button {
    background-color: var(--primary-color);
    width: 30px;
    border-radius: 15px;
}

/* Animation Classes */
.animate__animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

/* Modern Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate__fadeInDown {
    animation-name: fadeInDown;
}

/* Product Detail Page */
.product-gallery {
    margin-bottom: 30px;
}

.main-product-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.thumbnail-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.thumbnail-image:hover, .thumbnail-image.active {
    border-color: var(--primary-color);
}

.product-detail-title {
    font-size: 28px;
    margin-bottom: 15px;
}

.product-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.compare-price {
    font-size: 18px;
    text-decoration: line-through;
    color: var(--gray);
    margin-left: 10px;
}

.product-meta {
    margin-bottom: 30px;
}

.product-meta table {
    width: 100%;
}

.product-meta th {
    width: 30%;
    font-weight: 600;
    padding: 8px 0;
}

.product-meta td {
    padding: 8px 0;
}

.quantity-selector {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.quantity-selector .btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 0;
}

.quantity-selector input {
    width: 60px;
    height: 40px;
    text-align: center;
    border: 1px solid #ddd;
    border-left: none;
    border-right: none;
}
/* Modern Navigation */
.navbar {
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem;
}

.product-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.product-actions .btn {
    flex: 1;
}

.product-tabs {
    margin-top: 50px;
}

.nav-tabs {
    border-bottom: 2px solid #eee;
}

.nav-tabs .nav-link {
    border: none;
    color: var(--gray);
    font-weight: 600;
    padding: 12px 25px;
    position: relative;
}

.nav-tabs .nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.nav-tabs .nav-link:hover::after, .nav-tabs .nav-link.active::after {
    width: 100%;
}

.nav-tabs .nav-link.active {
    color: var(--primary-color);
    background-color: transparent;
}

.tab-content {
    padding: 30px 0;
}

.review-summary {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.overall-rating {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.rating-stars {
    font-size: 24px;
    margin-bottom: 15px;
}

.rating-progress {
    margin-bottom: 15px;
}

.rating-progress .progress {
    height: 8px;
    background-color: #e9ecef;
    border-radius: 4px;
}

.rating-progress .progress-bar {
    background-color: var(--warning-color);
}

.review-item {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.review-item:last-child {
    border-bottom: none;
}

.review-author {
    font-weight: 600;
    margin-bottom: 5px;
}

.review-date {
    font-size: 12px;
    color: var(--gray);
    margin-bottom: 10px;
}

/* Cart Page */
.cart-table {
    width: 100%;
    margin-bottom: 30px;
}

.cart-table th {
    padding: 15px;
    border-bottom: 1px solid #eee;
    font-weight: 600;
    text-align: left;
}

.cart-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
}

.cart-product-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
}

.cart-product-title {
    font-weight: 600;
    margin-bottom: 5px;
}

.cart-product-price {
    font-weight: 700;
    color: var(--primary-color);
}

.cart-quantity {
    display: flex;
    align-items: center;
}

.cart-quantity .btn {
    width: 30px;
    height: 30px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-quantity input {
    width: 50px;
    height: 30px;
    text-align: center;
    border: 1px solid #ddd;
    border-left: none;
    border-right: none;
}

.cart-remove {
    color: var(--danger-color);
    font-size: 20px;
    line-height: 1;
}

.cart-summary {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 10px;
}

.cart-summary h4 {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.cart-summary-total {
    font-weight: 700;
    font-size: 18px;
    padding-top: 15px;
    border-top: 1px solid #ddd;
    margin-top: 15px;
}

/* Checkout Page */
.checkout-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
}

.checkout-steps::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #eee;
    z-index: 1;
}

.checkout-step {
    text-align: center;
    position: relative;
    z-index: 2;
}

.checkout-step-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #eee;
    color: var(--gray);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-weight: 600;
}

.checkout-step.active .checkout-step-number {
    background-color: var(--primary-color);
    color: var(--white);
}

.checkout-step.completed .checkout-step-number {
    background-color: var(--success-color);
    color: var(--white);
}

.checkout-step-title {
    font-size: 14px;
    color: var(--gray);
}

.checkout-step.active .checkout-step-title, .checkout-step.completed .checkout-step-title {
    color: var(--dark-color);
    font-weight: 600;
}

.checkout-form .form-group {
    margin-bottom: 20px;
}

.checkout-form label {
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.checkout-form .form-control {
    height: 45px;
    border-radius: 5px;
}

.checkout-form .form-check {
    margin-bottom: 15px;
}

.order-summary {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 10px;
}

.order-summary-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
}

.order-summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.order-summary-item .product-name {
    flex: 1;
}

.order-summary-total {
    font-weight: 700;
    font-size: 18px;
    padding-top: 15px;
    border-top: 1px solid #ddd;
    margin-top: 15px;
}

.payment-methods {
    margin-top: 30px;
}

.payment-method {
    display: flex;
    align-items: center;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-method:hover {
    border-color: var(--primary-color);
}

.payment-method.active {
    border-color: var(--primary-color);
    background-color: rgba(156, 124, 94, 0.05);
}

.payment-method-icon {
    width: 40px;
    height: 40px;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    border-radius: 5px;
}

.payment-method-content {
    flex: 1;
}

.payment-method-title {
    font-weight: 600;
    margin-bottom: 5px;
}

.payment-method-description {
    font-size: 12px;
    color: var(--gray);
}

/* Order Confirmation */
.order-confirmation {
    text-align: center;
    padding: 50px 0;
}

.order-confirmation-icon {
    width: 100px;
    height: 100px;
    background-color: var(--success-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 30px;
}

.order-confirmation-title {
    font-size: 28px;
    margin-bottom: 15px;
}

.order-confirmation-message {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--gray);
}

.order-details {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    margin-top: 30px;
    text-align: left;
}

.order-details-title {
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
}

.order-details-row {
    display: flex;
    margin-bottom: 15px;
}

.order-details-label {
    width: 150px;
    font-weight: 600;
}

.order-details-value {
    flex: 1;
}

.order-products {
    margin-top: 30px;
}

.order-product {
    display: flex;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.order-product:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.order-product-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 15px;
}

.order-product-name {
    font-weight: 600;
    margin-bottom: 5px;
}

.order-product-price {
    color: var(--primary-color);
    font-weight: 700;
}

.order-summary-row {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #ddd;
}

.order-summary-label {
    font-weight: 600;
}

.order-summary-value {
    font-weight: 700;
}

.order-total {
    font-size: 18px;
    color: var(--primary-color);
}
/* Order Confirmation Styles */
.order-confirmation {
    padding: 5rem 0;
}

.order-confirmation-icon {
    width: 100px;
    height: 100px;
    background-color: var(--success-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 30px;
}

.order-confirmation-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.order-confirmation-message {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--gray);
}

.order-details {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 3rem;
}

.order-details-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #ddd;
}

.order-details-row {
    display: flex;
    margin-bottom: 1rem;
}

.order-details-label {
    width: 150px;
    font-weight: 600;
}

.order-details-value {
    flex: 1;
}

.order-products {
    margin-top: 2rem;
}

.order-product {
    display: flex;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.order-product-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 1rem;
}

.order-product-name {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.order-product-price {
    color: var(--primary-color);
    font-weight: 700;
}

.order-summary-row {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #ddd;
}

.order-summary-label {
    font-weight: 600;
}

.order-summary-value {
    font-weight: 700;
}

.order-total {
    font-size: 1.2rem;
    color: var(--primary-color);
}


