:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #3498db;
    --light-bg: #f8f9fa;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.product-grid {
    padding: 40px 0;
}
.product-item {
    position: relative;
    margin-bottom: 40px;
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.product-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #4a678f, transparent);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 1;
}

.product-item:hover::before {
    opacity: 0.1;
}

.product-image-container {
    position: relative;
    padding-top: 120%;
    overflow: hidden;
    background: #e9eff5;
}

.product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.33, 1, 0.68, 1);
}

.product-item:hover .product-image {
    transform: scale(1.1) rotate(2deg);
}

.product-item:hover .quick-view-overlay {
    opacity: 1;
    transform: scale(1);
}

.product-info {
    padding: 25px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.product-item:hover .product-info {
    background: rgba(74,103,143,0.1);
}

.product-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: #2a2a2a;
    margin-bottom: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.product-item:hover .product-name {
    color: #4a678f;
}

.price-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.stock-status {
    font-size: 0.85rem;
    color: #555;
    margin-top: 15px;
    display: block;
}

.offer-price {
    color: #4a678f;
    font-weight: 600;
    font-size: 1.2rem;
    transform: scale(1);
    transition: all 0.3s ease;
}

.testimonial-card {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.stars {
    margin-bottom: 1rem;
}

.star {
    font-size: 1.2rem;
    color: #ffc107;
    margin: 0 2px;
}

.star.empty {
    color: #ccc;
}

.testimonial-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

.testimonial-card blockquote {
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-card .author {
    font-weight: bold;
}

.testimonial-card .author-title {
    color: #6c757d;
    font-size: 0.9rem;
}
.booking-form {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.ambiance-img {
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.contact-form-box {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-info-box {
    background: var(--primary-color);
    color: white;
    padding: 40px;
    border-radius: 15px;
    height: 100%;
}

.contact-container {
    padding:50px;
    max-width: 100%;
    width: 100%;
    background: #f1f1f1;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    animation: slideUp 0.8s ease-out;
}

.contact-info {
    background: #2c3e50;
    padding: 40px;
    color: #fff;
}

.contact-info h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #fff;
    animation: fadeIn 1s ease-out;
}

.contact-info .info-item {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    animation: slideIn 0.5s ease-out;
}

.contact-info .info-item i {
    font-size: 24px;
    margin-right: 15px;
}

/* Contact Form */
.contact-form {
    padding: 40px;
}

.contact-form .form-group {
    margin-bottom: 20px;
    animation: slideIn 0.5s ease-out;
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
    color: #333;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e1e1e1;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    resize:none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #2c3e50;
    outline: none;
}

.contact-form button {
    background: #f43f5e !important;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.contact-form button:hover {
    background: #34495e;
    transform: translateY(-2px);
}

/* Animations */
@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateX(-30px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(44, 62, 80, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(44, 62, 80, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(44, 62, 80, 0);
    }
}

/* Media Queries */
@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
        padding:5px;
    }
    
    .contact-info {
        order: 2;
    }
    
    .contact-form {
        order: 1;
    }
}

.footer-gradient {
    background: linear-gradient(135deg, #333333 0%, #555555 50%, #777777 100%);
    color: white;
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.footer-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" fill-opacity="1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-repeat: no-repeat;
    background-position: bottom;
    pointer-events: none;
}

.footer-gradient h6 {
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-gradient h6::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: rgba(255,255,255,0.5);
}

.footer-gradient ul {
    list-style: none;
    padding: 0;
}

.footer-gradient ul li {
    margin-bottom: 15px;
}

.footer-gradient a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-gradient a:hover {
    color: white;
    padding-left: 5px;
}

.social-gradient a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    margin-right: 10px;
    transition: all 0.3s;
}

.social-gradient a:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-3px);
}

.payment-gradient i {
    font-size: 30px;
    margin-right: 15px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.payment-gradient i:hover {
    opacity: 1;
}

.footer-contact-info {
    color: rgba(255,255,255,0.8);
    padding: 20px;
}


.footer-contact-info p {
    margin: 0;
    color: rgba(255,255,255,0.8);
}

.footer-contact-info .contact-info-icon {
    display: inline-flex;
    align-items: center;
    margin-right: 10px;
}

.footer-contact-info .contact-info-icon i {
    font-size: 18px;
    color: rgba(255,255,255,0.6);
}

.footer-contact-info .contact-info-icon span {
    margin-left: 8px;
}

.footer-newsletter {
    padding: 30px 0;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.footer-newsletter h6 {
    color: white;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-newsletter input[type="email"] {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    border: none;
    outline: none;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 16px;
    transition: background 0.3s ease;
}

.footer-newsletter input[type="email"]:focus {
    background: rgba(255, 255, 255, 0.2);
}

.footer-newsletter button {
    padding: 15px 30px;
    background-color: #555555;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.footer-newsletter button:hover {
    background-color: #444444;
}

.footer-social-icons {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.footer-social-icons a {
    color: white;
    font-size: 20px;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.footer-social-icons a:hover {
    color: #764ba2;
}

.logo-footer {
    max-width: 160px;
    margin-bottom: 20px;
}
.copyright {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
     
.btn-primary {
    padding: 10px 15px !important;
    background: #f43f5e !important;
    color: #ffffff !important;
    text-decoration: none !important;
    border-radius: 25px !important;
    font-weight: 500 !important;
    border: 2px solid #f43f5e !important;
    transition: all 0.3s !important;
}