@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap");

body {
    font-family: "Lato", sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
    color: #333;
}
  
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr 3fr 1fr;
    gap: 20px;
}
  
.banner {
    grid-column: 1 / -1;
    height: 300px;
    background-size: cover;
    background-position: center;
    margin-bottom: 30px;
}
  
.banner-content {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}
  
.banner h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    font-family: "Lato", sans-serif;
}
  
.main-content {
    grid-column: 2 / 3;
}
  
.gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
  
.gallery img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
  
h1,
h2 {
    text-align: center;
    color: #153146;
    font-family: "Lato", sans-serif;
    align-items: center;
}
  
.bottle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}
  
.bottle-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}
  
.bottle-card:hover {
    transform: translateY(-5px);
}
  
.bottle-card img {
    max-width: 100%;
    height: 200px;
    object-fit: contain;
}
  
.bottle-info {
    margin-top: 15px;
}
  
.bottle-info p {
    margin: 5px 0;
}
  
.add-to-cart {
    background-color: #153146;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}
  
.add-to-cart:hover {
    background-color: #0e2231;
}
  
.add-to-cart.selected {
    background-color: #2ecc71;
}
  
.selection-info {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
  
.button-group {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}
  
.selection-button {
    background-color: #ecf0f1;
    border: none;
    padding: 10px 20px;
    margin: 0 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: "Lato", sans-serif;
}
  
.selection-button.selected {
    background-color: #153146;
    color: white;
}
  
input[type="text"],
textarea,
input[type="number"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #bdc3c7;
    border-radius: 5px;
    box-sizing: border-box;
    font-family: "Lato", sans-serif;
}
  
textarea {
    height: 100px;
    resize: vertical;
    font-family: "Lato", sans-serif;
}
  
.quantity-selector {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}
  
.quantity-selector label {
    flex: 1;
    font-family: "Lato", sans-serif;
}
  
.quantity-selector input {
    flex: 2;
    max-width: 100px;
    font-family: "Lato", sans-serif;
}
  
.submit-button {
    background-color: #153146;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
    font-size: 1.1em;
    font-family: "Lato", sans-serif;
}
  
.submit-button:hover {
    background-color: #0e2231;
}
  
.map-container {
    grid-column: 1 / -1;
    height: 400px;
    background-color: #ecf0f1;
    border-radius: 10px;
    margin-top: 30px;
}
  
@media (max-width: 1200px) {
    .container {
        grid-template-columns: 1fr;
    }
  
    .main-content {
        grid-column: 1;
    }
  
    .gallery {
        display: none;
    }
}