/* Custom sales-focused styles for Pro-holod website */

/* Hero Section */
.hero-sales {
    background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images/background/bg1.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
}

.hero-sales::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image: url('../images/svg/air-conditioner-svgrepo-com.svg');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;
    opacity: 0.1;
    z-index: 1;
}

.hero-sales-content {
    position: relative;
    z-index: 2;
    padding: 60px 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    opacity: 0.9;
}

.hero-description {
    font-size: 1.1rem;
    max-width: 600px;
    margin-bottom: 2rem;
    line-height: 1.6;
    opacity: 0.8;
}

.hero-cta {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.hero-cta .btn-main {
    padding: 12px 1 0px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.hero-cta .btn-outline {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.hero-cta .btn-outline:hover {
    background: #fff;
    color: #000;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    margin-top: 40px;
    gap: 30px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    flex: 1 1 280px;
    width: 100%;
    transition: all 0.3s ease;
}

.hero-feature:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.hero-feature-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-color);
    border-radius: 50%;
    flex-shrink: 0;
}

.hero-feature-text h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.hero-feature-text p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.8;
    line-height: 1.4;
}

.promotion-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: var(--secondary-color);
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    z-index: 3;
    transform: rotate(5deg);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Limited Time Offer Banner */
.limited-offer-banner {
    background: linear-gradient(90deg, #0056b3, #007bff);
    color: white;
    padding: 10px 0;
    position: relative;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.limited-offer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    padding: 5px 10px;
    position: relative;
}

.limited-offer-badge {
    background-color: #ff4d4d;
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
}

.limited-offer-text {
    font-size: 16px;
    font-weight: 500;
}

.limited-offer-timer {
    display: flex;
    gap: 10px;
}

.limited-offer-timer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgba(255,255,255,0.2);
    padding: 3px 8px;
    border-radius: 5px;
    min-width: 40px;
}

.limited-offer-timer-value {
    font-size: 18px;
    font-weight: bold;
}

.limited-offer-timer-label {
    font-size: 10px;
    text-transform: lowercase;
}

.limited-offer-btn {
    background-color: #fff;
    color: #0056b3;
    padding: 5px 15px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.limited-offer-btn:hover {
    background-color: #ff4d4d;
    color: white;
    transform: scale(1.05);
}

.limited-offer-close {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width: 768px) {
    .limited-offer-content {
        padding: 10px;
    }
    .limited-offer-text {
        text-align: center;
    }
}

/* Promotional Offers Section */
.promo-offers {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(240,249,255,0.95) 100%);
    position: relative;
    overflow: hidden;
}

.promo-offers::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(40, 154, 199, 0.1);
    z-index: 1;
}

.promo-offers::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(40, 154, 199, 0.05);
    z-index: 1;
}

.promo-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.promo-subtitle {
    display: inline-block;
    background-color: var(--secondary-color, #fb9c46);
    color: #fff;
    padding: 5px 15px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 15px;
}

.promo-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
    font-weight: 700;
}

.promo-description {
    max-width: 700px;
    margin: 0 auto;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.promo-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(40, 154, 199, 0.2);
}

.promo-card-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color, #289ac7);
    color: #fff;
    padding: 5px 15px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 13px;
    z-index: 1;
}

.promo-card-tag.hot {
    background: #ff3a3a;
}

.promo-card-tag.limited {
    background: var(--secondary-color, #fb9c46);
}

.promo-card-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.promo-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.promo-card:hover .promo-card-image img {
    transform: scale(1.1);
}

.promo-card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.promo-card-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #333;
    font-weight: 700;
}

.promo-card-text {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
}

.promo-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.promo-price {
    display: flex;
    flex-direction: column;
}

.promo-old-price {
    color: #999;
    text-decoration: line-through;
    font-size: 14px;
}

.promo-current-price {
    color: var(--primary-color, #289ac7);
    font-size: 1.3rem;
    font-weight: 700;
}

.promo-discount {
    display: inline-block;
    background: rgba(251, 156, 70, 0.15);
    color: var(--secondary-color, #fb9c46);
    padding: 3px 10px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    margin-left: 10px;
}

.promo-btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.promo-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--secondary-color, #fb9c46);
    transition: all 0.3s ease;
    z-index: -1;
}

.promo-btn:hover::before {
    width: 100%;
}

.promo-timer {
    background: rgba(40, 154, 199, 0.1);
    border-radius: 10px;
    padding: 15px;
    margin-top: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.promo-timer-item {
    background: #fff;
    border-radius: 8px;
    padding: 8px;
    min-width: 60px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.promo-timer-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    line-height: 1;
}

.promo-timer-label {
    font-size: 12px;
    color: #777;
    margin-top: 5px;
}

.promo-all-link {
    text-align: center;
    margin-top: 40px;
}

.promo-all-link .btn-main {
    padding: 12px 30px;
}

.promo-ribbon {
    width: 150px;
    height: 150px;
    overflow: hidden;
    position: absolute;
    top: -10px;
    left: -10px;
    z-index: 2;
}

.promo-ribbon-content {
    position: absolute;
    display: block;
    width: 225px;
    padding: 8px 0;
    background-color: var(--secondary-color, #fb9c46);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    left: -45px;
    top: 35px;
    transform: rotate(-45deg);
}

/* Responsive styles for promotional offers */
@media (max-width: 1200px) {
    .promo-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .promo-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 992px) {
    .promo-offers {
        padding: 60px 0;
    }
    
    .promo-header {
        margin-bottom: 40px;
    }
    
    .promo-title {
        font-size: 2rem;
    }
    
    .promo-description {
        font-size: 1rem;
    }
    
    .promo-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    }
}

@media (max-width: 768px) {
    .promo-offers {
        padding: 50px 0;
    }
    
    .promo-header {
        margin-bottom: 30px;
    }
    
    .promo-grid {
        grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
        gap: 25px;
    }
    
    .promo-title {
        font-size: 1.8rem;
    }
    
    .promo-card-image {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .promo-offers {
        padding: 40px 0;
    }
    
    .promo-title {
        font-size: 1.6rem;
    }
    
    .promo-description {
        font-size: 0.9rem;
    }
    
    .promo-card-title {
        font-size: 1.2rem;
    }
    
    .promo-card-content {
        padding: 20px;
    }
    
    .promo-timer {
        flex-wrap: wrap;
    }
    
    .promo-timer-item {
        min-width: 45px;
        padding: 5px;
    }
    
    .promo-timer-value {
        font-size: 1rem;
    }
    
    .promo-current-price {
        font-size: 1.1rem;
    }
}

/* Responsive styles */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
}

@media (max-width: 992px) {
    .hero-sales {
        min-height: 70vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-features {
        gap: 20px;
    }
    .limited-offer-content {
        padding-top: 80px;
    }
}

@media (max-width: 768px) {
    .hero-sales {
        text-align: center;
    }
    
    .hero-sales::before {
        width: 100%;
        background-position: center;
        opacity: 0.05;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
        font-size: 1rem;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-feature {
        max-width: 100%;
    }
    
    .promotion-badge {
        top: 10px;
        right: 10px;
        font-size: 0.9rem;
        padding: 7px 15px;
    }
}

@media (max-width: 480px) {
    .limited-offer-content {
        padding-top: 70px;
    }
    .limited-offer-banner {
        display: none;
    }
    .hero-sales {
        min-height: 90vh;
        padding-top: 60px;
    }
    
    .hero-title {
        font-size: 1.7rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-cta .btn-main {
        width: 100%;
        padding: 10px 20px;
        font-size: 1rem;
    }
    
    .hero-feature {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    
    .hero-feature-icon {
        margin-bottom: 10px;
    }
    .limited-offer-text {
        font-size: 11px;
        line-height: normal;
    }
    .limited-offer-badge {
        font-size: 11px;
    }
    .limited-offer-timer-value {
        font-size: 12px;
    }
    .limited-offer-timer-item {
        flex-direction: row;
        gap: 10px;
    }
    .limited-offer-btn {
        font-size: 11px;
    }
}

/* Custom sales styles for Pro-holod2 hero section */

/* Hero section styles */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background-image: url(../images/background/bg1.jpg);
    background-size: cover;
    background-position: center;
    color: #fff;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-weight: 300;
}

.hero-features {
    margin-top: 40px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 15px;
    padding: 20px;
}

.hero-feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.hero-feature-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color, #289ac7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.hero-feature-icon img {
    width: 30px;
    height: auto;
}

.hero-feature-text h4 {
    color: #fff;
    margin-bottom: 5px;
    font-size: 18px;
}

.hero-feature-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin: 0;
}

.hero-product {
    position: relative;
    z-index: 2;
}

.hero-product img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
    animation: float 3s ease-in-out infinite;
}

.hero-cta {
    margin-top: 30px;
    display: flex;
    gap: 15px;
}

.hero-badges {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 5px 15px;
    font-size: 14px;
    font-weight: 500;
}

/* Special effects and animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.hero-scroll-prompt {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-scroll-prompt span {
    color: #fff;
    font-size: 12px;
    margin-bottom: 5px;
}

.hero-scroll-prompt .scroll-arrow {
    width: 30px;
    height: 30px;
    border: 2px solid #fff;
    border-radius: 50%;
    position: relative;
    animation: scrollPrompt 2s infinite;
}

.hero-scroll-prompt .scroll-arrow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    margin-top: -2px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: translate(-50%, -50%) rotate(-45deg);
}

@keyframes scrollPrompt {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(10px);
        opacity: 0.5;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        letter-spacing: normal;
    }
    
    .hero-features {
        margin-top: 20px;
    }
    
    .hero-product {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: auto;
        padding: 100px 0 50px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-feature-item {
        margin-bottom: 15px;
    }
    
    .hero-feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .hero-product img {
        max-width: 80%;
        margin: 0 auto;
        display: block;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-badges {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-features {
        padding: 15px;
    }
    
    .hero-feature-icon {
        width: 40px;
        height: 40px;
        margin-right: 0px;
    }
    
    .hero-feature-text h4 {
        font-size: 16px;
    }
    
    .hero-feature-text p {
        font-size: 13px;
    }
    .hero-cta .btn-main {
        padding: 8px 5px;
        font-size: 0.7rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: 600;
        transition: all 0.3s ease;
    }
    
}