/*
Theme Name: Petrarca
Theme URI: https://yourwebsite.com
Description: Child theme of Hello Elementor
Author: Your Name
Author URI: https://yourwebsite.com
Template: hello-elementor
Version: 1.0.0
Text Domain: petrarca
*/

/* Product Archieve */

.wines-wrapper {
    width: 100%;
}
.wine-row {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 60px 100px;
    flex-wrap: wrap;
}
.dark-row {
    background-color: #2E3540;
}
.light-row {
    background-color: #ffffff;
}
.wine-card {
    width: 28%;
    min-width: 280px;
    text-align: center;
    border: 2px solid #C4AD6B;
    border-radius: 20px;
    padding: 30px;
    transition: 0.3s ease;
    box-sizing: border-box;
}
.dark-row .wine-title { color: #C4AD6B; }
.dark-row .wine-text { color: #ffffff; }
.light-row .wine-title { color: #C4AD6B; }
.light-row .wine-text { color: #2E3540; }
.wine-image {
    display: flex;
    justify-content: center;
    align-items: center;
}
.wine-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    margin-bottom: 15px;
}
.wine-card:hover {
    transform: translateY(-8px);
}
@media (max-width: 991px) {
    .wine-card {
        width: 45%;
    }
    .wine-row {
        gap: 40px;
    }
}
@media (max-width: 766px) {
    .wine-card {
        width: 100%;
        max-width: 420px;
    }
    .wine-row {
        gap: 30px;
        padding: 50px 15px;
    }
}




















/* Single Product Page */

.hero-product {
    padding: 80px 20px;
}
.hero-inner {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 2fr 1.2fr;
    align-items: center;
    gap: 80px;
	background-color: #F6F6F6;
	border-radius:20px;
}
.hero-left {
    padding: 40px;
}
.hero-title {
    font-size: 48px;
    letter-spacing: 4px;
    font-weight: 700;
    margin-bottom: 30px;
}
.hero-description {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #333;
}
.hero-price {
    font-size: 22px;
    margin-bottom: 25px;
    font-weight: 600;
}
.hero-cart .single_add_to_cart_button {
    background-color: #C4AD6B !important;
    color: #fff;
    padding: 14px 32px;
    border-radius: 4px;
    font-weight: 600;
    border: none;
    transition: 0.3s ease;
}
.hero-cart .single_add_to_cart_button:hover {
    background-color: #a39057 !important;
}
.hero-cart .cart {
    display: flex;
    gap: 30px;
}
.hero-right {
    text-align: center;
	height:100%;
	width: 100%;
}
.hero-right img {
	height:100%;
    width: 100%;
	object-fit:cover;
	border-radius: 0px 20px 20px 0px;
}
@media (max-width: 767px) {

    .hero-inner {
/*         grid-template-columns: 1fr;
        text-align: center;
        gap: 50px; */
		display:flex;
		flex-direction: column-reverse;
		gap:0px;
    }
	.hero-description{
	 	font-size: 15px;
	}
    .hero-left {
        margin: auto;
    }
	.hero-right img {
    	border-radius: 20px 20px 0px 0px;
	}
    .hero-title {
        font-size: 38px;
    }
}







.wine-specifications {
	padding: 30px 20px 80px 20px;
	background: #ffffff;
}

.spec-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px 120px;
}

.spec-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.spec-icon {
    width: 40px;
    min-width: 40px;
    color: #222;
}

.spec-icon svg {
    width: 28px;
    height: 28px;
}

.spec-text h4 {
    font-size: 14px;
    letter-spacing: 1.5px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.spec-text p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}

/* Long text wider spacing */
.spec-text p br {
    margin-bottom: 6px;
}

/* Responsive */
@media (max-width: 767px) {
    .spec-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
	.wine-specifications {
		padding: 30px 30px 50px 30px;
	}
}
