/* Shop Landing Page Styles */

/* ========== HOME PAGE WRAPPER ========== */
.home-page {
    position: relative;
    overflow: hidden;   
}

/* Контентные секции поверх декораций */
.home-page > * {
    position: relative;
    z-index: 10;
}

/* Декоративные элементы на фоне страницы */
.page-deco {
    position: absolute;
    object-fit: cover;
    pointer-events: none;
    z-index: 1;
}

.page-deco--hops-1 {
    width: 567.84px;
    height: 567.84px;
    right: -50px;
    top: 1291px;
    transform: rotate(37.836deg);
    filter: blur(5px);
    opacity: 1;
}

.page-deco--hops-2 {
    width: 567.84px;
    height: 567.84px;
    right: -150px;
    top: 2511px;
    transform: rotate(37.836deg);
    filter: blur(5px);
    opacity: 1;
}

.page-deco--keg {
    width: 233.67px;
    height: 653.64px;
    left: calc(50% - 672.97px);
    top: calc(50% + 1311px);
    transform: rotate(23.061deg);
    opacity: 1;
}

.page-deco--hops-3 {
    width: 567.84px;
    height: 567.84px;
    right: -80px;
    top: 3446px;
    transform: rotate(37.836deg);
    filter: blur(5px);
    opacity: 1;
}

.page-deco--hops-4 {
    width: 567.84px;
    height: 567.84px;
    left: -50px;
    top: 2534px;
    transform: rotate(37.836deg);
    filter: blur(5px);
    opacity: 1;
}

/* Responsive for tablets */
@media (min-width: 768px) and (max-width: 1350px) {
    .page-deco--hops-1 {
        right: -100px;
    }

    .page-deco--hops-2 {
        right: -200px;
    }

    .page-deco--keg {
        left: calc(50% - 707.97px);
    }

    .page-deco--hops-4 {
        left: 266.32px;
    }
}

/* Mobile - hide some decorations */
@media (max-width: 768px) {
    .page-deco--hops-1,
    .page-deco--hops-2,
    .page-deco--hops-3,
    .page-deco--keg {
        display: none;
    }

    .page-deco--hops-4 {
        width: 300px;
        height: 300px;
        left: 50px;
        top: 1800px;
    }
}
@media (min-width: 768px) and (max-width: 1350px) {
    .image-300 {
        left: 367.35px;
        top: -695px;
    }

    .bottle {
        left: calc(50% - 432px);
        top: calc(50% - 615.76px);
    }

    .image-299 {
        left: 926.35px;
        top: -68px;
    }

    .image-297 {
        left: 1266.32px;
        top: -198px;
    }

    .image-2982 {
        left: -34.68px;
        top: 2646px;
    }
}

@media (max-width: 767px) {
    .image-299, .image-300, .bottle, .image-297, .image-2982 {
        display: none;
    }
}

/* ========== HERO SECTION ========== */
.hero-section {
    background: #282828;
    height: 600px;
    position: relative;
    overflow: hidden;
}

/* Hero decorations */
.hero-decorations {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.deco-hmel {
    position: absolute;
    opacity: 0.1;
    width: 910.96px;
    height: 910.96px;
    transform-origin: 0 0;
    transform: rotate(52.774deg);
    object-fit: cover;
    aspect-ratio: 1;
}

.deco-hmel-top-left {
    left: 625.35px;
    top: -676px;
}

.deco-hmel-top-right {
    left: 926.35px;
    top: -68px;
}

.deco-bottle {
    position: absolute;
    opacity: 0.1;
    width: 312px;
    height: 877px;
    filter: blur(7px);
    object-fit: cover;
}

.deco-bottle-left {
    left: calc(50% - 226px);
    top: calc(50% - 655.76px);
    transform: rotate(-25.281deg);
}

.deco-bottle-left-2 {
    left: calc(50% - 316.13px);
    top: calc(50% - 90px);
    transform: rotate(43.247deg);
}

.deco-bottle-right {
    opacity: 1;
    left: calc(50% + 510.14px);
    top: calc(50% - 315px);
    transform: rotate(24.318deg);
}


.hero-text {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 531px;
    margin-left: auto;
    margin-right: 20%;
}

.hero-title {
    color: #FFC75B;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0;
}

.hero-subtitle {
    font-family: "Montserrat", sans-serif;
    font-size: 32px;
    font-weight: 400;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0;
}

.hero-subtitle .highlight {
    color: #FFC75B;
    font-weight: 700;
}

.hero-subtitle .regular {
    color: #ffffff;
    font-weight: 500;
}

/* ========== STATS SECTION ========== */
.stats-section {
    max-width: 84.375rem;
    margin: 0 auto;
    width: 100%;
    padding: 2rem 1.25rem;
}

/* First row - 3 columns */
.stats-row-1 {
    display: flex;
    flex-direction: row;
    gap: 1.25rem;
    align-items: center;
    justify-content: space-between;
}

.stat-card {
    border-radius: 0.25rem;
    flex-shrink: 0;
    width: 25.625rem;
    height: 16.25rem;
    position: relative;
}

.stat-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.25rem;
}

.stat-card-number {
    background: #282828;
    border-radius: 0.25rem;
    padding: 3.5rem 3.9375rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 25.625rem;
    height: 16.25rem;
}

.stat-number {
    color: #ffffff;
    text-align: center;
    font-family: "Unbounded", sans-serif;
    font-size: 6.25rem;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1;
    margin: 0;
}

.stat-label {
    color: #ffffff;
    text-align: center;
    font-family: "Montserrat", sans-serif;
    font-size: 1rem;
    letter-spacing: 0.04em;
    font-weight: 500;
    text-transform: uppercase;
    opacity: 0.5;
    margin-top: 0.5rem;
}

.stat-card-dark {
    background: #282828;
    border-radius: 0.25rem;
    padding: 0.625rem;
    display: flex;
    width: 25.625rem;
    height: 16.25rem;
}

.stat-card-dark img {
    border-radius: 0.25rem;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Second row - 2 columns */
.stats-row-2 {
    display: flex;
    flex-direction: row;
    gap: 1.25rem;
    align-items: center;
    justify-content: space-between;
}

.stat-card-wide {
    border-radius: 0.25rem;
    width: 52.5rem;
    height: 16.25rem;
}

.stat-card-wide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.25rem;
}

/* ========== BONUS SECTION ========== */
.bonus-section {
    max-width: 84.375rem;
    margin: 0 auto;
    width: 100%;
    padding: 2rem 1.25rem;
}

.bonus-card {
    background-image: url('../images/shop/frame2085660323.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    border-radius: 0.25rem;
    padding: 2rem 1.25rem 2rem 7.5rem;
    height: 23.75rem;
    position: relative;
}

.bonus-content {
    display: flex;
    width: 30.125rem;
    flex-direction: column;
    gap: 1.5rem;
}

.bonus-title {
    color: #1E1E1E;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.625rem;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0;
}

.bonus-subtitle {
    color: #1E1E1E;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0;
}

.bonus-image {
    position: absolute;
    bottom: 0;
    right: 1rem;
}

.bonus-image img {
    max-width: 100%;
    height: auto;
}

/* ========== PRODUCTS SECTION ========== */
.products-section {
    max-width: 84.375rem;
    margin: 0 auto;
    width: 100%;
    padding: 2rem 1.25rem;
}

/* ========== FRANCHISE SECTION ========== */
.franchise-section {
    background: linear-gradient(135deg, #282828 0%, #3d3d3d 100%);
    color: white;
    padding: 4rem 0;
}

.franchise-grid {
    max-width: 84.375rem;
    margin: 0 auto;
    padding: 0 1.25rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.franchise-tag {
    display: inline-block;
    background: #FFC75B;
    color: #282828;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.franchise-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.franchise-text {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.9);
}

.franchise-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.franchise-benefits li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.check-icon {
    color: #FFC75B;
    flex-shrink: 0;
}

.franchise-image img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
}

/* ========== CONTACT SECTION ========== */
.contact-section {
    max-width: 84.375rem;
    margin: 0 auto;
    width: 100%;
    padding: 4rem 1.25rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;    
    align-items:center;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #282828;
}

.contact-subtitle {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 2rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    color: #FFC75B;
    flex-shrink: 0;
}

.contact-item-label {
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 0.25rem;
}

.contact-item-value {
    font-size: 1.125rem;
    font-weight: 500;
    color: #282828;
}

.contact-form-wrapper {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
}

.contact-form .form-label {
    font-weight: 500;
    color: #282828;
    margin-bottom: 0.5rem;
}

.contact-form .form-control {
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    padding: 0.75rem;
}

.contact-form .form-control:focus {
    border-color: #FFC75B;
    box-shadow: 0 0 0 0.2rem rgba(255, 199, 91, 0.25);
}

/* ========== RESPONSIVE ========== */
@media (min-width: 1350px) and (max-width: 1920px) {
    .deco-hmel-top-left {
        left: 367.35px;
        top: -695px;
    }
    
    .hero-text {
        margin-right: 15%;
    }
}

@media (min-width: 768px) and (max-width: 1350px) {
    .hero-text {
        margin-right: 10%;
        width: 100%;
        max-width: 531px;
    }
    
    .stats-row-1,
    .stats-row-2 {
        flex-wrap: wrap;
    }
    
    .stat-card,
    .stat-card-number,
    .stat-card-dark {
        width: calc(33.333% - 1rem);
        min-width: 250px;
    }
    
    .stat-card-wide {
        width: calc(50% - 0.625rem);
    }
}

@media (max-width: 992px) {
    .hero-section {
        height: 500px;
    }
    
    .hero-text {
        margin: 0 auto;
        padding: 0 2rem;
    }
    
    .bonus-card,
    .franchise-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .bonus-card {
        padding: 2rem 1.5rem;
        background-position: right center;
    }
    
    .bonus-image {
        position: static;
        margin-top: 2rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-subtitle {
        font-size: 24px;
    }
    
    .stat-number {
        font-size: 4rem;
    }
    
    .stats-row-1,
    .stats-row-2 {
        flex-direction: column;
    }
    
    .stat-card,
    .stat-card-number,
    .stat-card-dark,
    .stat-card-wide {
        width: 100%;
    }
    
    .bonus-title {
        font-size: 2rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .franchise-title,
    .contact-title {
        font-size: 2rem;
    }
    
    .deco-hmel,
    .deco-bottle {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-section {
        height: 400px;
    }
    
    .hero-text {
        padding: 0 1rem;
        gap: 24px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .stats-section,
    .bonus-section,
    .products-section {
        padding: 1.5rem 1rem;
    }
    
    .bonus-card {
        height: auto;
        padding: 1.5rem 1rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
}
