/**
 * Shop Advertisement & Promotional Display Area - Horizontal Layout
 * Premium e-commerce promo banner with horizontal cards
 */

/* ============================================
   HEADER AD PANEL CONTAINER
   ============================================ */
.shop-header-ad-panel {
    display: none;
}

@media (min-width: 768px) {
    .shop-header-ad-panel {
        display: block;
        flex: 0 0 auto;
        margin-left: auto;
        margin-right: 16px;
        width: 50%;
        max-width: 50%;
        box-sizing: border-box;
    }
}

/* ============================================
   FULL-WIDTH HERO PROMO BILLBOARD
   ============================================ */
.promo-carousel {
    position: relative;
    height: 120px;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.promo-carousel-track {
    display: flex;
    gap: 0;
    height: 100%;
    width: 700%;
    overflow-x: hidden;
    transition: transform 0.6s ease-in-out;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.promo-carousel-track::-webkit-scrollbar {
    display: none;
}

/* ============================================
   PROMO CARDS - FULL-WIDTH BILLBOARD LAYOUT
   ============================================ */
.promo-card {
    flex: 0 0 calc(100% / 7);
    min-width: calc(100% / 7);
    width: calc(100% / 7);
    height: 100%;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.promo-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

/* Card Background Gradients */
.promo-card-1 {
    background: linear-gradient(135deg, #C9A961 0%, #D4B76A 20%, #1A3C34 60%, #244A36 100%);
}

.promo-card-2 {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 50%, #FE6B8B 100%);
}

.promo-card-3 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.promo-card-4 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.promo-card-5 {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.promo-card-6 {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}

.promo-card-7 {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

/* Card Content - Compact Horizontal Strip */
.promo-card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
    text-align: left;
}

.promo-card-badge {
    display: inline-block;
    background: #FF0000;
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    width: fit-content;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    text-transform: uppercase;
}

.promo-card-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 4px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.promo-card-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    line-height: 1.3;
    font-weight: 500;
}

.promo-card-btn {
    display: inline-block;
    background: #ffffff;
    color: #1A3C34;
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.8rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
    width: fit-content;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.promo-card-btn:hover {
    background: #C9A961;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(201, 169, 97, 0.5);
}

/* ============================================
   NAVIGATION ARROWS - BILLBOARD SIZE
   ============================================ */
.promo-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.promo-nav:hover {
    background: #C9A961;
    color: #ffffff;
    transform: translateY(-50%) scale(1.1);
}

.promo-nav-prev {
    left: 10px;
}

.promo-nav-next {
    right: 10px;
}

.promo-nav i {
    font-size: 0.9rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 767px) {
    .shop-header-ad-panel {
        display: none;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .promo-carousel {
        height: 120px;
    }
}

@media (min-width: 1024px) {
    .promo-carousel {
        height: 120px;
    }
}

@media (min-width: 1200px) {
    .promo-carousel {
        height: 130px;
    }
}
