/* Advanced Heading - Base Styles */
.wea-heading-wrapper {
    text-align: center;
    position: relative;
    padding: 20px 0;
    margin: 30px 0;
}

.wea-heading-title {
    margin: 0 0 15px;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    color: #333;
    position: relative;
    display: inline-block;
    letter-spacing: -0.5px;
}

.wea-heading-subtitle {
    margin: 0;
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 0 20px;
}

/* Style 1 - Modern */
.wea-heading-style1 {
    text-align: center;
}

.wea-heading-style1 .wea-heading-title {
    padding-bottom: 15px;
}

.wea-heading-style1 .wea-heading-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(45deg, #0073aa, #00a0d2);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.wea-heading-style1:hover .wea-heading-title::after {
    width: 120px;
}

.wea-heading-style1::before,
.wea-heading-style1::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    opacity: 0.1;
    z-index: -1;
    transition: all 0.3s ease;
}

.wea-heading-style1::before {
    top: 0;
    left: 0;
    border-top: 3px solid #0073aa;
    border-left: 3px solid #0073aa;
}

.wea-heading-style1::after {
    bottom: 0;
    right: 0;
    border-bottom: 3px solid #0073aa;
    border-right: 3px solid #0073aa;
}

.wea-heading-style1:hover::before,
.wea-heading-style1:hover::after {
    width: 80px;
    height: 80px;
    opacity: 0.2;
}

/* Style 2 - Minimal */
.wea-heading-style2 {
    text-align: left !important;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin: 20px 0;
}

.wea-heading-style2 .wea-heading-title {
    padding-left: 20px;
    border-left: 4px solid #0073aa;
    margin-bottom: 20px;
    text-align: left;
}

.wea-heading-style2 .wea-heading-subtitle {
    text-align: left;
    padding-left: 20px;
    color: #666;
}

.wea-heading-style2:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

/* Style 3 - Creative */
.wea-heading-style3 {
    background: linear-gradient(45deg, #f8f9fa, #e9ecef);
    padding: 40px 30px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    margin: 20px 0;
}

.wea-heading-style3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #0073aa, #00a0d2);
}

.wea-heading-icon {
    font-size: 40px;
    color: #0073aa;
    margin-bottom: 20px;
    display: inline-block;
    background: #fff;
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.wea-heading-style3:hover .wea-heading-icon {
    transform: rotate(360deg);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.wea-heading-style3 .wea-heading-title {
    background: linear-gradient(45deg, #0073aa, #00a0d2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.wea-heading-style3 .wea-heading-subtitle {
    color: #555;
    font-weight: 500;
}

/* Decorative elements */
.wea-heading-wrapper::before,
.wea-heading-wrapper::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    opacity: 0.1;
    z-index: -1;
    transition: all 0.3s ease;
}

.wea-heading-wrapper::before {
    top: 0;
    left: 0;
    border-top: 3px solid #0073aa;
    border-left: 3px solid #0073aa;
}

.wea-heading-wrapper::after {
    bottom: 0;
    right: 0;
    border-bottom: 3px solid #0073aa;
    border-right: 3px solid #0073aa;
}

.wea-heading-wrapper:hover::before {
    width: 80px;
    height: 80px;
    opacity: 0.2;
}

.wea-heading-wrapper:hover::after {
    width: 80px;
    height: 80px;
    opacity: 0.2;
}

/* Responsive Styles */
@media (max-width: 767px) {
    .wea-heading-title {
        font-size: 32px;
    }

    .wea-heading-subtitle {
        font-size: 16px;
    }

    .wea-heading-style1::before,
    .wea-heading-style1::after {
        width: 40px;
        height: 40px;
    }

    .wea-heading-style2 {
        padding: 20px;
    }

    .wea-heading-style3 {
        padding: 30px 20px;
    }

    .wea-heading-icon {
        width: 60px;
        height: 60px;
        line-height: 60px;
        font-size: 30px;
    }
}

/* Flip Box */
.wea-flip-box {
    perspective: 1500px;
    height: 400px;
    margin: 20px 0;
}

.wea-flip-box-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-radius: 15px;
}

.wea-flip-box:hover .wea-flip-box-inner {
    transform: rotateY(180deg);
}

.wea-flip-box-front,
.wea-flip-box-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    border-radius: 15px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.wea-flip-box-front {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #333;
}

.wea-flip-box-front::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,115,170,0.1) 0%, rgba(0,160,210,0.1) 100%);
    z-index: 1;
    transition: opacity 0.3s ease;
}

.wea-flip-box-back {
    background: linear-gradient(135deg, #0073aa 0%, #00a0d2 100%);
    color: #fff;
    transform: rotateY(180deg);
}

.wea-flip-box-back::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    z-index: 1;
    transition: opacity 0.3s ease;
}

/* When background image is present */
.wea-flip-box-front[style*="background-image"]::before,
.wea-flip-box-back[style*="background-image"]::before {
    background: rgba(0,0,0,0.4);
}

.wea-flip-box-front[style*="background-image"] .wea-flip-box-title,
.wea-flip-box-front[style*="background-image"] .wea-flip-box-description,
.wea-flip-box-back[style*="background-image"] .wea-flip-box-title,
.wea-flip-box-back[style*="background-image"] .wea-flip-box-description {
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.wea-flip-box-front[style*="background-image"] .wea-flip-box-icon,
.wea-flip-box-back[style*="background-image"] .wea-flip-box-icon {
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.wea-flip-box-icon {
    font-size: 60px;
    margin-bottom: 25px;
    color: #0073aa;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.wea-flip-box-icon i,
.wea-flip-box-icon svg {
    width: 1em;
    height: 1em;
    display: inline-block;
}

.wea-flip-box:hover .wea-flip-box-icon {
    transform: scale(1.1);
}

.wea-flip-box-title {
    margin: 0 0 20px;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    position: relative;
    z-index: 2;
}

.wea-flip-box-description {
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.wea-flip-box-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #fff;
    color: #0073aa;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 2px solid transparent;
}

.wea-flip-box-button:hover {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* Front side specific styles */
.wea-flip-box-front .wea-flip-box-title {
    color: #333;
}

.wea-flip-box-front .wea-flip-box-description {
    color: #666;
}

/* Back side specific styles */
.wea-flip-box-back .wea-flip-box-title {
    color: #fff;
}

.wea-flip-box-back .wea-flip-box-description {
    color: rgba(255,255,255,0.9);
}

/* Team Member */
.wea-team-member {
    text-align: center;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.wea-team-member-image {
    position: relative;
    overflow: hidden;
}

.wea-team-member-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.wea-team-member:hover .wea-team-member-image img {
    transform: scale(1.1);
}

.wea-team-member-content {
    padding: 20px;
}

.wea-team-member-name {
    margin: 0 0 5px;
    font-size: 24px;
}

.wea-team-member-position {
    color: #666;
    margin-bottom: 15px;
}

.wea-team-member-description {
    margin-bottom: 20px;
    line-height: 1.6;
}

.wea-team-member-social {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.wea-team-member-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #f5f5f5;
    color: #333;
    transition: all 0.3s ease;
}

.wea-team-member-social-icon:hover {
    background-color: #333;
    color: #fff;
}

.wea-team-member-social-icon i,
.wea-team-member-social-icon svg {
    font-size: 16px;
    width: 16px;
    height: 16px;
    line-height: 1;
}

/* Pricing Table - Base Styles */
.wea-pricing-table {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: visible;
    border: 1px solid rgba(0,0,0,0.05);
    margin-top: 20px;
}

.wea-pricing-table:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.wea-pricing-table-popular {
    position: absolute;
    top: -20px;
    right: 0;
    background: linear-gradient(45deg, #0073aa, #00a0d2);
    color: #fff;
    padding: 8px 20px;
    border-radius: 0 15px 0 15px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0,115,170,0.2);
    white-space: nowrap;
    z-index: 2;
}

.wea-pricing-table-header {
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 20px;
    padding-top: 20px;
}

.wea-pricing-table-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(45deg, #0073aa, #00a0d2);
    border-radius: 3px;
}

.wea-pricing-table-title {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    color: #333;
    letter-spacing: -0.5px;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.wea-pricing-table-price {
    margin-bottom: 35px;
    color: #333;
    position: relative;
    display: inline-block;
    padding: 0 15px;
}

.wea-pricing-table-currency {
    font-size: 28px;
    font-weight: 600;
    vertical-align: top;
    margin-right: 5px;
    color: #0073aa;
}

.wea-pricing-table-amount {
    font-size: 60px;
    font-weight: 800;
    line-height: 1;
    color: #0073aa;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.wea-pricing-table-period {
    font-size: 16px;
    color: #666;
    margin-left: 5px;
    font-weight: 500;
}

.wea-pricing-table-features {
    margin-bottom: 35px;
    padding: 0 10px;
}

.wea-pricing-table-feature {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #555;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.wea-pricing-table-feature:hover {
    transform: translateX(5px);
}

.wea-pricing-table-feature i,
.wea-pricing-table-feature svg {
    color: #0073aa;
    margin-right: 15px;
    font-size: 24px;
    width: 24px;
    height: 24px;
    background: rgba(0,115,170,0.1);
    padding: 12px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wea-pricing-table-feature:hover i,
.wea-pricing-table-feature:hover svg {
    transform: scale(1.1);
    background: rgba(0,115,170,0.2);
}

.wea-pricing-table-footer {
    margin-top: 35px;
}

.wea-pricing-table-button {
    display: inline-block;
    padding: 15px 35px;
    background: linear-gradient(45deg, #0073aa, #00a0d2);
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,115,170,0.2);
    border: none;
    position: relative;
    overflow: hidden;
}

.wea-pricing-table-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.wea-pricing-table-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,115,170,0.3);
    color: #fff;
}

.wea-pricing-table-button:hover::before {
    left: 100%;
}

/* Style 1 - Modern */
.wea-pricing-style1 {
    background: #fff;
    overflow: visible;
}

.wea-pricing-style1:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.wea-pricing-style1 .wea-pricing-table-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(45deg, #0073aa, #00a0d2);
    border-radius: 3px;
}

.wea-pricing-style1 .wea-pricing-table-popular {
    top: -20px;
}

/* Style 2 - Minimal */
.wea-pricing-style2 {
    background: #f8f9fa;
    border: none;
    box-shadow: none;
    overflow: visible;
}

.wea-pricing-style2:hover {
    transform: none;
    box-shadow: none;
}

.wea-pricing-style2 .wea-pricing-table-header {
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 15px;
}

.wea-pricing-style2 .wea-pricing-table-feature {
    justify-content: flex-start;
    padding-left: 20px;
}

.wea-pricing-style2 .wea-pricing-table-button {
    background: #0073aa;
    box-shadow: none;
}

.wea-pricing-style2 .wea-pricing-table-button:hover {
    background: #005177;
    transform: none;
}

.wea-pricing-style2 .wea-pricing-table-popular {
    top: -20px;
}

/* Style 3 - Creative */
.wea-pricing-style3 {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border: none;
    overflow: visible;
}

.wea-pricing-style3:hover {
    transform: translateY(-5px);
}

.wea-pricing-style3 .wea-pricing-table-header {
    background: linear-gradient(45deg, #0073aa, #00a0d2);
    margin: -40px -30px 25px;
    padding: 30px;
    color: #fff;
    position: relative;
    z-index: 1;
    border-radius: 15px 15px 0 0;
}

.wea-pricing-style3 .wea-pricing-table-title {
    color: #fff;
}

.wea-pricing-style3 .wea-pricing-table-price {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.wea-pricing-style3 .wea-pricing-table-feature {
    background: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    margin-bottom: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.wea-pricing-style3 .wea-pricing-table-feature:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.wea-pricing-style3 .wea-pricing-table-feature i,
.wea-pricing-style3 .wea-pricing-table-feature svg {
    background: rgba(0,115,170,0.1);
    color: #0073aa;
    padding: 10px;
    margin-right: 15px;
}

.wea-pricing-style3 .wea-pricing-table-button {
    background: linear-gradient(45deg, #0073aa, #00a0d2);
    border-radius: 8px;
}

.wea-pricing-style3 .wea-pricing-table-popular {
    top: -20px;
    z-index: 3;
}

/* Popular Badge - Common Styles for all templates */
.wea-pricing-table-popular {
    position: absolute;
    top: -20px;
    right: 0;
    background: linear-gradient(45deg, #0073aa, #00a0d2);
    color: #fff;
    padding: 8px 20px;
    border-radius: 0 15px 0 15px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0,115,170,0.2);
    white-space: nowrap;
    z-index: 2;
}

/* Responsive Styles */
@media (max-width: 767px) {
    .wea-pricing-table {
        padding: 30px 20px;
        margin-top: 15px;
    }

    .wea-pricing-table-popular {
        padding: 6px 15px;
        font-size: 12px;
        right: 0;
        top: -15px;
    }

    .wea-pricing-table-title {
        font-size: 24px;
        padding: 0 15px;
    }

    .wea-pricing-style3 .wea-pricing-table-header {
        margin: -30px -20px 20px;
        padding: 20px;
    }
}

/* Affiliate Product Showcase Widget */
.wea-product-showcase {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    margin: 25px 0;
    display: flex;
    flex-direction: column;
    position: relative;
}

@media (min-width: 768px) {
    .wea-product-showcase {
        flex-direction: row;
        align-items: stretch;
    }
}

.wea-product-showcase:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.wea-product-image {
    position: relative;
    overflow: hidden;
    flex: 0 0 300px;
    max-width: 100%;
}

@media (min-width: 768px) {
    .wea-product-image {
        flex: 0 0 300px;
        max-width: 300px;
    }
}

.wea-product-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.03) 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.wea-product-showcase:hover .wea-product-image::before {
    opacity: 1;
}

.wea-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    aspect-ratio: 1;
}

.wea-product-showcase:hover .wea-product-image img {
    transform: scale(1.08);
}

.wea-product-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.wea-product-title {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 20px;
    line-height: 1.3;
    color: #333;
    position: relative;
    padding-bottom: 15px;
}

.wea-product-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, #4CAF50, #45a049);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.wea-product-showcase:hover .wea-product-title::after {
    width: 60px;
}

.wea-product-price-wrapper {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f8f9fa;
    padding: 12px 20px;
    border-radius: 10px;
    display: inline-flex;
}

.wea-product-regular-price {
    font-size: 16px;
    color: #666;
    text-decoration: line-through;
    position: relative;
}

.wea-product-sale-price {
    font-size: 22px;
    font-weight: 700;
    color: #e44d26;
    position: relative;
}

.wea-product-sale-price::before {
    content: 'Save';
    position: absolute;
    top: -20px;
    left: 0;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    background: #e44d26;
    padding: 2px 8px;
    border-radius: 4px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.wea-product-showcase:hover .wea-product-sale-price::before {
    opacity: 1;
    transform: translateY(0);
}

.wea-product-price {
    font-size: 22px;
    font-weight: 700;
    color: #333;
}

.wea-product-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    background: #fff;
    padding: 8px 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    display: inline-flex;
}

.wea-rating-stars {
    position: relative;
    display: inline-block;
    width: 100px;
    height: 20px;
    background: #eee;
    border-radius: 10px;
    overflow: hidden;
}

.wea-rating-stars::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: calc(var(--rating) * 20%);
    background: linear-gradient(to right, #ffd700, #ffb700);
    border-radius: 10px;
    transition: width 0.3s ease;
}

.wea-reviews-count {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.wea-product-description {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
    flex: 1;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid #f0f0f0;
}

.wea-product-button-wrapper {
    margin-bottom: 20px;
}

.wea-product-button {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    background: linear-gradient(45deg, #4CAF50, #45a049);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    font-size: 15px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.2);
}

.wea-product-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: 0.5s;
}

.wea-product-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
}

.wea-product-button:hover::before {
    left: 100%;
}

.wea-product-disclosure {
    font-size: 12px;
    color: #888;
    font-style: italic;
    border-top: 1px solid #eee;
    padding-top: 15px;
    margin-top: 15px;
    position: relative;
}

.wea-product-disclosure::before {
    content: 'ℹ️';
    margin-right: 5px;
}

/* Style 1 - Modern */
.wea-product-style1 {
    background: linear-gradient(to bottom, #fff, #f8f9fa);
}

.wea-product-style1 .wea-product-title::after {
    background: linear-gradient(to right, #4CAF50, #45a049);
}

.wea-product-style1 .wea-product-button {
    background: linear-gradient(45deg, #4CAF50, #45a049);
}

/* Style 2 - Minimal */
.wea-product-style2 {
    background: #fff;
    border: 1px solid #eee;
    box-shadow: none;
}

.wea-product-style2:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.wea-product-style2 .wea-product-title {
    font-size: 20px;
    font-weight: 500;
}

.wea-product-style2 .wea-product-button {
    background: #fff;
    color: #333;
    border: 2px solid #4CAF50;
    box-shadow: none;
}

.wea-product-style2 .wea-product-button:hover {
    background: #4CAF50;
    color: #fff;
}

/* Style 3 - Creative */
.wea-product-style3 {
    background: #fff;
    border-radius: 20px;
}

.wea-product-style3 .wea-product-image {
    border-radius: 20px 20px 0 0;
}

@media (min-width: 768px) {
    .wea-product-style3 .wea-product-image {
        border-radius: 20px 0 0 20px;
    }
}

.wea-product-style3 .wea-product-title {
    font-size: 24px;
    background: linear-gradient(to right, #4CAF50, #45a049);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.wea-product-style3 .wea-product-title::after {
    display: none;
}

.wea-product-style3 .wea-product-price-wrapper {
    background: #f8f9fa;
    padding: 15px 25px;
    border-radius: 12px;
    display: inline-flex;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.wea-product-style3 .wea-product-button {
    background: #333;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

/* Responsive Styles */
@media (max-width: 767px) {
    .wea-product-showcase {
        margin: 20px 0;
    }

    .wea-product-content {
        padding: 20px;
    }

    .wea-product-title {
        font-size: 20px;
    }

    .wea-product-sale-price,
    .wea-product-price {
        font-size: 20px;
    }

    .wea-product-description {
        font-size: 14px;
        padding-left: 15px;
    }

    .wea-product-button {
        padding: 10px 20px;
        font-size: 14px;
    }

    .wea-product-price-wrapper {
        padding: 10px 15px;
    }
}

.wea-product-coupon {
    background: #fff;
    border: 2px dashed #4CAF50;
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.wea-product-coupon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(76, 175, 80, 0.05), rgba(69, 160, 73, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.wea-product-showcase:hover .wea-product-coupon::before {
    opacity: 1;
}

.wea-coupon-text {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.wea-coupon-code {
    background: #4CAF50;
    color: #fff;
    padding: 5px 12px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wea-coupon-code:hover {
    background: #45a049;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.2);
}

.wea-coupon-code::after {
    content: '📋';
    margin-left: 8px;
    font-size: 14px;
}

.wea-coupon-expiry {
    font-size: 12px;
    color: #888;
    margin-left: auto;
    font-style: italic;
}

/* Style 1 - Modern */
.wea-product-style1 .wea-product-coupon {
    background: linear-gradient(to right, #fff, #f8f9fa);
    border-color: #4CAF50;
}

.wea-product-style1 .wea-coupon-code {
    background: linear-gradient(45deg, #4CAF50, #45a049);
}

/* Style 2 - Minimal */
.wea-product-style2 .wea-product-coupon {
    border-style: solid;
    border-color: #eee;
    background: #f8f9fa;
}

.wea-product-style2 .wea-coupon-code {
    background: #333;
}

.wea-product-style2 .wea-coupon-code:hover {
    background: #4CAF50;
}

/* Style 3 - Creative */
.wea-product-style3 .wea-product-coupon {
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.wea-product-style3 .wea-coupon-code {
    background: #333;
    position: relative;
    overflow: hidden;
}

.wea-product-style3 .wea-coupon-code::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: 0.5s;
}

.wea-product-style3 .wea-coupon-code:hover::before {
    left: 100%;
}

/* Responsive Styles */
@media (max-width: 767px) {
    .wea-product-coupon {
        flex-wrap: wrap;
        padding: 12px 15px;
    }

    .wea-coupon-expiry {
        width: 100%;
        margin-top: 8px;
        margin-left: 0;
        text-align: center;
    }

    .wea-coupon-text {
        font-size: 13px;
    }

    .wea-coupon-code {
        font-size: 14px;
        padding: 4px 10px;
    }
} 