/* Shop Hero Section */
.shop-hero {
    position: relative;
    overflow: hidden;
    height: 450px;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.shop-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.shop-banner-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.shop-hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 450px;
    margin-top: 110px;
    margin-left: 358px;
}

.shop-hero-content {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    min-height: 400px;
}

.shop-hero .container {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 400px;
    padding-bottom: 80px;
}

.shop-hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 30px;
}

.shop-illustration {
    position: relative;
    width: 300px;
    height: 250px;
}

.shop-facade {
    position: relative;
    width: 200px;
    height: 200px;
}

.shop-awning {
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 40px;
    background: repeating-linear-gradient(
        90deg,
        #f44336 0px,
        #f44336 20px,
        #fff 20px,
        #fff 40px
    );
    border-radius: 5px 5px 0 0;
}

.shop-walls {
    position: absolute;
    top: 40px;
    left: 0;
    width: 200px;
    height: 160px;
    background-color: #ffeb3b;
    border-radius: 0 0 10px 10px;
}

.shop-windows {
    position: absolute;
    top: 60px;
    left: 20px;
    width: 160px;
    height: 120px;
    display: flex;
    gap: 10px;
}

.shop-windows::before,
.shop-windows::after {
    content: '';
    width: 75px;
    height: 120px;
    background-color: #2196f3;
    border-radius: 5px;
}

.shop-sign {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    color: #2196f3;
    padding: 5px 20px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 16px;
    border: 2px solid #2196f3;
}

.cloud-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.cloud {
    position: absolute;
    background-color: #b3e5fc;
    border-radius: 50px;
    opacity: 0.7;
}

.cloud-1 {
    width: 60px;
    height: 30px;
    top: 20px;
    right: 20px;
}

.cloud-2 {
    width: 40px;
    height: 20px;
    top: 60px;
    right: 50px;
}

.cloud-3 {
    width: 50px;
    height: 25px;
    top: 100px;
    right: 30px;
}

.cloud::before,
.cloud::after {
    content: '';
    position: absolute;
    background-color: #b3e5fc;
    border-radius: 50px;
}

.cloud::before {
    width: 50px;
    height: 50px;
    top: -25px;
    left: 10px;
}

.cloud::after {
    width: 60px;
    height: 60px;
    top: -30px;
    right: 10px;
}

.vertical-bar {
    width: 4px;
    height: 200px;
    background-color: #002633;
    border-radius: 2px;
}

.shop-hero-right {
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding-bottom: 0;
    padding-left: 850px;
    text-align: right;
}

.shop-title {
    font-size: 32px;
    color: #4caf50;
    font-weight: 600;
    margin: 0;
    text-align: right;
    white-space: nowrap;
    margin-right: 0;
}

/* Products Section */
.products-section {
    padding: 60px 0;
    background-color: #e5e5e5;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.product-card {
    background-color: #152732;
    border-radius: 10px;
    padding: 18px;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.product-price {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #fff;
}

.product-price span {
    font-size: 30px;
}

.product-details {
    margin-bottom: 15px;
    width: 100%;
}

.product-details p {
    margin: 6px 0;
    font-size: 13px;
    color: #fff;
}

.product-image {
    width: 100%;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
}

.product-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.router-image {
    position: relative;
    width: 150px;
    height: 120px;
}

.router-body {
    width: 150px;
    height: 80px;
    background-color: #000;
    border-radius: 5px;
    position: relative;
}

.router-body.tplink-body {
    background: linear-gradient(135deg, #000 0%, #1976d2 100%);
}

.router-body.white-body {
    background-color: #fff;
    border: 2px solid #ddd;
}

.antenna {
    position: absolute;
    width: 8px;
    height: 40px;
    background-color: #000;
    border-radius: 4px;
    bottom: 80px;
}

.antenna-1 {
    left: 20px;
}

.antenna-2 {
    left: 50%;
    transform: translateX(-50%);
}

.antenna-3 {
    right: 20px;
}

.antenna-4 {
    left: 35%;
    transform: translateX(-50%);
}

.white-antenna {
    background-color: #ccc;
}

.product-btn {
    background-color: #2c3e50;
    color: #fff;
    padding: 10px 25px;
    border: 2px solid #fff;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    display: inline-block;
    width: auto;
    min-width: 180px;
    text-align: center;
    text-shadow: 
        0 0 2px rgba(255, 0, 0, 0.3),
        0 0 2px rgba(0, 255, 255, 0.3),
        0 0 4px rgba(255, 255, 255, 0.2);
}

.product-btn:hover {
    background-color: #34495e;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 968px) {
    .shop-hero-content {
        flex-direction: column;
        text-align: center;
    }

    .shop-hero-left {
        flex-direction: column;
        gap: 20px;
    }

    .vertical-bar {
        width: 200px;
        height: 4px;
    }

    .shop-title {
        font-size: 36px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .shop-title {
        font-size: 28px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .shop-illustration {
        width: 250px;
        height: 200px;
    }

    .shop-facade {
        width: 150px;
        height: 150px;
    }
}
