/* ===== Shop & Ship Section ===== */

.app-view-container {
    padding: 0 70px;
}

@media (max-width: 991px) {
    .app-view-container {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media (max-width: 575px) {
    .app-view-container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

.homepage-shop-ship-section {
    padding-top: 50px;
}

.homepage-shop-ship-section h2 {
    color: #000 !important;
    font-size: 25px !important;
    font-weight: 700;
}

.homepage-shop-ship {
    background: url('/images/shop-ship-bg.jpeg');
    border-radius: 16px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top right;
    position: relative;
}

.homepage-shop-ship::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    background: linear-gradient(to right, #ffffff 0%, rgba(255,255,255,0.85) 30%, rgba(255,255,255,0) 60%);
    z-index: 0;
}

.homepage-shop-ship > .row {
    position: relative;
    z-index: 1;
}

.homepage-shop-ship-section .rounded-btn {
    color: white;
    border-radius: 24px;
    padding: 10px 20px;
    font-size: 12px;
    font-weight: 400;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.2s ease;
}

.homepage-shop-ship-section .rounded-btn:hover {
    color: white;
}

.homepage-shop-ship-section .red-button {
    background-color: var(--ct-red);
}

.homepage-shop-ship-section .red-button:hover {
    background-color: var(--ct-red-dark);
}

/* Responsive */
@media (max-width: 991px) {
    .homepage-shop-ship {
        background-size: cover;
        background-position: center;
    }
}

@media (max-width: 575px) {
    .homepage-shop-ship {
        background-position: center;
    }

    .homepage-shop-ship-section h2 {
        font-size: 20px !important;
    }
}
