* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #fefaf5;
    color: #2c1e12;
    padding-top: 76px;
}

/* Custom Navbar */
.custom-navbar {
    background: #fffaf3;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    padding: 12px 0;
    transition: all 0.3s ease;
}

.navbar-brand .brand-name {
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(135deg, #b85c1a, #e7a33e);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.5px;
}

.navbar-brand .brand-tagline {
    display: block;
    font-size: 0.7rem;
    color: #9b6a3c;
    letter-spacing: 1px;
}

.navbar-nav .nav-link {
    color: #4a2e1a;
    font-weight: 500;
    margin: 0 8px;
    transition: all 0.3s ease;
    position: relative;
}

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        color: #c5651e;
    }

        .navbar-nav .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 30px;
            height: 2px;
            background: #e6a343;
            border-radius: 2px;
        }

/* Main Content */
.main-content {
    min-height: calc(100vh - 300px);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #fff0e0 0%, #ffe6d5 100%);
    padding: 80px 0;
    margin-bottom: 0;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: #9b4a1a;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #5c3a1f;
    margin-bottom: 20px;
}

.btn-primary-custom {
    background: #c25d1a;
    color: white;
    padding: 12px 32px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
}

    .btn-primary-custom:hover {
        background: #a34810;
        transform: translateY(-2px);
        color: white;
    }

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: #9b4a1a;
    margin-bottom: 50px;
    position: relative;
}

    .section-title::after {
        content: '';
        width: 70px;
        height: 3px;
        background: #e6a343;
        display: block;
        margin: 15px auto 0;
        border-radius: 4px;
    }

/* Product Cards */
.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    border: 1px solid #f0e1d2;
}

    .product-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }

.product-img {
    background: #faeedf;
    padding: 30px;
    text-align: center;
    font-size: 4rem;
}

.product-info {
    padding: 20px;
    text-align: center;
}

.product-price {
    color: #c25d1a;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 15px 0;
}

/* Gallery */
.gallery-item {
    background: #fdf4ea;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    cursor: pointer;
}

    .gallery-item:hover {
        transform: scale(1.03);
    }

.gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background: linear-gradient(135deg, #f5e2d2, #ffe6d5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
}

.gallery-caption {
    padding: 15px;
    text-align: center;
    font-weight: 500;
}

/* Quality Cards */
.quality-card {
    background: white;
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #f0dfcf;
}

    .quality-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    }

.quality-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

/* Uses Cards */
.use-card {
    background: white;
    padding: 25px;
    border-radius: 20px;
    border-left: 4px solid #e6a343;
    margin-bottom: 20px;
    height: 100%;
    transition: all 0.3s ease;
}

    .use-card:hover {
        transform: translateX(5px);
        box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    }

/* Contact Form */
.contact-info-card {
    background: #fff6ed;
    padding: 30px;
    border-radius: 20px;
    height: 100%;
}

.contact-form-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.form-control-custom {
    border-radius: 30px;
    padding: 12px 20px;
    border: 1px solid #e2cfbc;
    transition: all 0.3s ease;
}

    .form-control-custom:focus {
        border-color: #c25d1a;
        box-shadow: 0 0 0 0.2rem rgba(194,93,26,0.1);
    }

/* Footer */
.footer {
    position: relative;

    color: #eedbcb;
    padding: 50px 0 20px;
    margin-top: 50px;
}

    .footer h5 {
        color: #e6a343;
        margin-bottom: 20px;
        font-weight: 600;
    }

.footer-links {
    list-style: none;
    padding: 0;
}

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-links a,
    .footer-links li {
        color: #eedbcb;
        text-decoration: none;
        transition: all 0.3s ease;
    }

        .footer-links a:hover {
            color: #e6a343;
            padding-left: 5px;
        }

.social-icons a {
    display: inline-block;
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    margin-right: 10px;
    color: #eedbcb;
    transition: all 0.3s ease;
}

    .social-icons a:hover {
        background: #e6a343;
        color: #2c1e12;
        transform: translateY(-3px);
    }

.btn-subscribe {
    background: #c25d1a;
    color: white;
    border-radius: 30px;
    padding: 8px 20px;
}

    .btn-subscribe:hover {
        background: #a34810;
        color: white;
    }

.copyright {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    margin-top: 20px;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    body {
        padding-top: 68px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .hero-section {
        padding: 40px 0;
    }

    .navbar-brand .brand-name {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .btn-primary-custom {
        padding: 10px 24px;
        font-size: 0.9rem;
    }
}


/* Featured Products Section Styles */
.featured-products {
    background: linear-gradient(135deg, #fff9f2 0%, #ffffff 100%);
}

.section-subtitle {
    text-align: center;
    color: #6c757d;
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

    .product-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }

.product-img {
    position: relative;
    overflow: hidden;
    background: #faeedf;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #c25d1a;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 1;
}

    .product-badge.premium {
        background: linear-gradient(135deg, #d4af37, #ffd700);
        color: #2c1e12;
    }

.product-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

    .product-info h3 {
        font-size: 1.3rem;
        font-weight: 700;
        margin-bottom: 10px;
        color: #2c1e12;
    }

.product-rating {
    margin-bottom: 12px;
    color: #ffc107;
}

    .product-rating span {
        color: #6c757d;
        font-size: 0.8rem;
        margin-left: 5px;
    }

.product-description {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.product-features {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

    .product-features span {
        font-size: 0.8rem;
        color: #28a745;
    }

    .product-features i {
        margin-right: 5px;
    }

.product-price {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.current-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #c25d1a;
}

.original-price {
    color: #6c757d;
    text-decoration: line-through;
    font-size: 0.9rem;
}

.discount {
    background: #dc3545;
    color: white;
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
}

.product-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.btn-add-to-cart {
    flex: 1;
    background: #c25d1a;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 30px;
    transition: all 0.3s ease;
    font-weight: 600;
}

    .btn-add-to-cart:hover {
        background: #a34810;
        transform: translateY(-2px);
    }

.btn-view-details {
    background: #f8f9fa;
    color: #c25d1a;
    border: 1px solid #dee2e6;
    padding: 10px 15px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

    .btn-view-details:hover {
        background: #c25d1a;
        color: white;
        border-color: #c25d1a;
    }

/* Modal Styles */
.product-modal .modal-content {
    border-radius: 20px;
    border: none;
}

.product-modal .modal-header {
    background: linear-gradient(135deg, #c25d1a, #e6a343);
    color: white;
    border-radius: 20px 20px 0 0;
}

    .product-modal .modal-header .btn-close {
        filter: brightness(0) invert(1);
    }

.price-detail {
    margin: 15px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .product-img {
        height: 200px;
    }

    .product-info h3 {
        font-size: 1.1rem;
    }

    .current-price {
        font-size: 1.2rem;
    }

    .product-actions {
        flex-direction: column;
    }

    .product-features {
        gap: 10px;
    }
}

@media (max-width: 576px) {
    .product-card {
        margin-bottom: 20px;
    }

    .product-img {
        height: 180px;
    }
}

/* Toast Notification */
.toast-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #28a745;
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    z-index: 9999;
    animation: slideInRight 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.cart-container {
    background: white;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.cart-item {
    display: flex;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

    .cart-item:hover {
        background: #fefaf5;
    }

.cart-item-image {
    width: 100px;
    height: 100px;
    background: #faeedf;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-right: 20px;
}

.cart-item-details {
    flex: 1;
}

.cart-item-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #2c1e12;
}

.cart-item-price {
    color: #c25d1a;
    font-weight: 600;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #dee2e6;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .quantity-btn:hover {
        background: #c25d1a;
        color: white;
        border-color: #c25d1a;
    }

.quantity-value {
    font-weight: 600;
    min-width: 30px;
    text-align: center;
}

.cart-item-total {
    text-align: right;
    min-width: 120px;
}

.item-total-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #c25d1a;
}

.remove-item {
    color: #dc3545;
    cursor: pointer;
    margin-left: 20px;
    transition: all 0.3s ease;
}

    .remove-item:hover {
        transform: scale(1.1);
    }

.cart-summary {
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    position: sticky;
    top: 100px;
}

    .cart-summary h3 {
        margin-bottom: 20px;
        color: #2c1e12;
    }

.summary-details {
    margin-bottom: 25px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

    .summary-row.total {
        font-size: 1.2rem;
        font-weight: 700;
        color: #c25d1a;
        border-bottom: none;
        padding-top: 15px;
    }

.btn-book-now {
    background: linear-gradient(135deg, #c25d1a, #e6a343);
    color: white;
    padding: 12px;
    border-radius: 40px;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .btn-book-now:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(194,93,26,0.3);
    }

.btn-clear-cart {
    background: #dc3545;
    color: white;
    padding: 10px;
    border-radius: 40px;
    transition: all 0.3s ease;
}

    .btn-clear-cart:hover {
        background: #c82333;
        transform: translateY(-2px);
    }

.btn-continue-shopping {
    background: #6c757d;
    color: white;
    padding: 10px;
    border-radius: 40px;
    transition: all 0.3s ease;
}

    .btn-continue-shopping:hover {
        background: #5a6268;
        color: white;
    }

.empty-cart {
    text-align: center;
    padding: 60px 20px;
}

    .empty-cart i {
        font-size: 4rem;
        color: #dee2e6;
        margin-bottom: 20px;
    }

.order-preview {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    max-height: 200px;
    overflow-y: auto;
}

@media (max-width: 768px) {
    .cart-item {
        flex-direction: column;
        text-align: center;
    }

    .cart-item-image {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .cart-item-total {
        text-align: center;
        margin-top: 15px;
    }

    .remove-item {
        margin-left: 0;
        margin-top: 10px;
    }
}
