* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: 'Lato', sans-serif;
    background: linear-gradient(135deg, #FFFFFF, #F7F7F7);
    color: #2A2A2A;
    line-height: 1.7;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.container, .container-reviews {
    width: 100%;
    max-width: 1400px;
    margin: 20px auto;
    padding: 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 50px rgba(212, 175, 55, 0.15);
    transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.container:hover, .container-reviews:hover {
    box-shadow: 0 15px 60px rgba(212, 175, 55, 0.25);
    transform: translateY(-5px);
}

.product, .maps-product, .reviewss {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    background: linear-gradient(145deg, #FFFFFF, #F9F9F9);
    padding: 25px;
    border-radius: 18px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.07);
    margin-bottom: 30px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.product:hover, .maps-product:hover, .reviewss:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.3);
    border-color: #D4AF37;
}

.reviewss h2 {
    text-align: center;
    font-size: 28px;
    font-weight: 800;
    color: #D4AF37; /* Gold */
    margin-bottom: 20px;
    letter-spacing: 1.2px;
    position: relative;
    text-transform: uppercase;
}

.reviewss h2::after {
    content: '';
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #00B300, #D4AF37);
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    transition: width 0.4s ease;
}

.reviewss h2:hover::after {
    width: 100px;
}

.product-images, .maps-images, .reviews-images {
    flex: 2;
    min-width: 300px;
    padding: 15px;
    position: relative;
    overflow: hidden;
}

.product-images img, .reviews-images img {
    width: 100%;
    border-radius: 12px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: transform 0.5s ease, border-color 0.4s ease, filter 0.4s ease;
    filter: brightness(1);
    object-fit: cover;
}

.product-images img:hover, .reviews-images img:hover {
    transform: scale(1.1) rotate(3deg);
    border-color: #D4AF37;
    filter: brightness(1.05) drop-shadow(0 0 12px rgba(212, 175, 55, 0.6));
}

.maps-images iframe {
    width: 100%;
    height: 300px;
    border-radius: 12px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: border-color 0.4s ease, transform 0.4s ease;
}

.maps-images iframe:hover {
    border-color: #00B300;
    transform: scale(1.03);
}

.product-details, .maps-details, .reviews-details {
    flex: 2;
    min-width: 300px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-title, .review-title {
    font-size: 26px;
    font-weight: 800;
    color: #000000;
    margin-bottom: 15px;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.4s ease;
}

.product-title:hover, .review-title:hover {
    color: #B8860B; /* Darker gold */
}

.product-title::after, .review-title::after {
    content: '';
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #D4AF37, #00B300);
    position: absolute;
    bottom: -5px;
    left: 0;
    border-radius: 2px;
    transition: width 0.4s ease;
}

.review-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.product-title:hover::after, .review-title:hover::after {
    width: 60px;
}

.product-price {
    font-size: 22px;
    color: #00B300;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: color 0.4s ease, transform 0.4s ease;
}

.product-price:hover {
    color: #008000;
    transform: scale(1.05);
}

.product-description {
    font-size: 16px;
    line-height: 1.7;
    color: #333333;
    margin: 25px 0;
    transition: color 0.4s ease;
}

.product-description:hover {
    color: #1A1A1A;
}

.reviews {
    margin-top: 25px;
}

.review {
    background: linear-gradient(145deg, #F9F9F9, #FFFFFF);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    border-left: 4px solid #D4AF37;
    transition: background 0.4s ease, transform 0.4s ease, border-color 0.4s ease;
}

.review:hover {
    background: linear-gradient(145deg, #F5F5F5, #FAFAFA);
    transform: translateX(5px);
    border-left-color: #00B300;
}

.review h4 {
    margin: 0 0 8px 0;
    color: #D4AF37;
    font-size: 18px;
    font-weight: 700;
    transition: color 0.4s ease;
}

.review h4:hover {
    color: #B8860B;
}

.add-to-cart {
    background: linear-gradient(90deg, #D4AF37, #FFD700);
    color: #000000;
    padding: 15px 25px;
    text-align: center;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 700;
    margin-top: 25px;
    border: 2px solid #D4AF37;
    transition: background 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.add-to-cart::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transition: left 0.5s ease;
    z-index: -1;
}

.add-to-cart:hover::before {
    left: 100%;
}

.add-to-cart:hover {
    background: linear-gradient(90deg, #00B300, #00CC00);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 179, 0, 0.5);
    border-color: #00B300;
}

header {
    background: linear-gradient(180deg, #D4AF37, #B8860B);
    padding: 15px;
    color: #FFFFFF;
    text-align: center;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: background 0.4s ease, transform 0.4s ease;
}

header:hover {
    background: linear-gradient(180deg, #FFD700, #D4AF37);
    transform: translateY(-2px);
}

.logo img {
    width: 160px;
    height: auto;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.logo img:hover {
    transform: scale(1.05) rotate(5deg);
    filter: drop-shadow(0 0 10px #FFFFFF);
}

a {
    text-decoration: none;
    color: #00B300;
    transition: color 0.4s ease, text-shadow 0.4s ease;
}

a:hover {
    color: #D4AF37;
    text-shadow: 0 0 6px rgba(212, 175, 55, 0.6);
}

footer {
    background: linear-gradient(180deg, #008000, #00B300);
    color: #FFFFFF;
    text-align: center;
    padding: 15px 0;
    width: 100%;
    box-shadow: 0 -5px 20px rgba(0, 179, 0, 0.4);
    font-size: 14px;
    margin-top: auto;
    transition: background 0.4s ease;
}

footer:hover {
    background: linear-gradient(180deg, #00CC00, #00B300);
}

table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
    margin: 20px 0;
}

td {
    background: linear-gradient(145deg, #D4AF37, #B8860B);
    border: 1px solid #FFD700;
    border-radius: 12px;
    padding: 12px;
    color: #FFFFFF;
    transition: background 0.4s ease, transform 0.4s ease;
}

td:hover {
    background: linear-gradient(145deg, #00B300, #008000);
    transform: scale(1.03);
}

td:first-child {
    width: 35%;
    font-weight: 700;
}

/* Mobile-specific styles to match original behavior */
@media (max-width: 768px) {
    .container, .container-reviews {
        margin: 20px auto;
        padding: 15px;
    }

    .product, .maps-product, .reviewss {
        padding: 20px;
        margin-bottom: 20px;
    }

    .product-images, .maps-images, .reviews-images {
        flex: 1 0 100%;
        min-width: 100%;
        padding: 10px;
    }

    .product-details, .maps-details, .reviews-details {
        flex: 1 0 100%;
        min-width: 100%;
        padding: 10px;
    }

    .maps-images iframe {
        height: 250px;
    }

    .reviewss h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .reviewss h2::after {
        width: 50px;
    }

    .product-title, .review-title {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .product-title::after, .review-title::after {
        width: 30px;
    }

    .product-price {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .product-description {
        font-size: 14px;
        margin: 20px 0;
    }

    .add-to-cart {
        padding: 12px 20px;
        font-size: 16px;
        margin-top: 20px;
    }

    .review {
        padding: 12px;
        margin-bottom: 10px;
    }

    .review h4 {
        font-size: 16px;
    }
}