
.store-detail-header {
    background-color: #fff;
}

.store-detail-logo-wrapper {
    background: white;
    padding: 0px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.store-detail-logo {
    max-width: 150px;
    height: auto;
}

.store-detail-name {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.store-detail-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.store-detail-stats {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.store-stat-badge {
    background-color: #00a6aa;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.related-stores-section {
    position: sticky;
    top: 30px;
}

.boxshadsec {
    background: white;
    border-radius: 10px;
    padding: 10px;
    margin-top: 0px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    margin-bottom: 20px;
}

.related-stores-section h4 {
    font-size: 1.3rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #00a6aa;
}

.related-store-item {
    display: flex;
    align-items: center;
    padding: 12px;
    margin-bottom: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #333;
    background: #f8f9fa;
}

.related-store-item:hover {
    background: #00a6aa;
    color: white;
    transform: translateX(5px);
    box-shadow: 0 4px 10px rgba(0,166,170,0.3);
}

.related-store-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 5px;
    margin-right: 12px;
    background: white;
    padding: 5px;
}

.related-store-name {
    font-weight: 500;
    font-size: 0.95rem;
    margin: 0;
}

.store-info-section {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

.store-info-section h3 {
    font-size: 1.8rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.store-info-section p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.8;
}

.newsletter-section {
    background: linear-gradient(135deg, #00a6aa 0%, #008a8d 100%);
    border-radius: 10px;
    padding: 40px;
    margin-bottom: 30px;
    text-align: center;
    color: white;
}

.newsletter-section h3 {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.newsletter-section p {
    font-size: 1.05rem;
    margin-bottom: 25px;
    opacity: 0.95;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}

.newsletter-form button {
    padding: 12px 30px;
    background: #333;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #222;
    transform: translateY(-2px);
}


/* Horizontal Coupon Cards */
.coupons-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.coupon-card-horizontal {
    display: grid;
    grid-template-columns: 200px 1fr auto;
    gap: 30px;
    align-items: center;
    padding: 25px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.coupon-card-horizontal:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: #d0d0d0;
}

/* First Column - Coupon Type */
.coupon-type-column {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background: linear-gradient(135deg, #001515 0%, #00a6aa 70%);
    border-radius: 8px;
    min-height: 90px;
}

.coupon-type-display {
    text-align: center;
}

.discount-text {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    display: block;
}

/* Second Column - Coupon Details */
.coupon-details-column {
    flex: 1;
}

.coupon-title-horizontal {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.coupon-description-horizontal {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Third Column - Button */
.coupon-button-column {
    display: flex;
    align-items: center;
}

.helpimg img {
    width: 100%;
    height: 270px;
    object-fit: contain;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border: 2px solid #009c9f;
    border-radius: 14px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .coupon-card-horizontal {
        grid-template-columns: 150px 1fr auto;
        gap: 20px;
        padding: 20px;
    }

    .coupon-type-column {
        padding: 15px;
        min-height: 80px;
    }

    .discount-text {
        font-size: 20px;
    }
    .helpimg img {
        height: 210px;
        margin-bottom: 24px;
    }
}

@media (max-width: 768px) {
    .coupon-card-horizontal {
        grid-template-columns: 1fr;
        gap: 15px;
        text-align: center;
    }

    .coupon-type-column {
        width: 100%;
        min-height: 60px;
    }

    .coupon-button-column {
        justify-content: center;
    }

    .coupon-btn {
        width: 100%;
    }
}

@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .newsletter-form {
        flex-direction: column;
    }

    .related-stores-section {
        position: relative;
        top: 0;
    }
    .store-detail-logo {
        max-width: 110px;
    }
    .store-detail-name {
        font-size: 1.3rem;
        margin-top: 14px;
    }
}
