/**
 * Smart Tour Engine - Public Styles
 */

:root {
    --ste-primary: #0073aa;
    --ste-primary-dark: #005a87;
    --ste-secondary: #ff6b35;
    --ste-secondary-dark: #e55a2b;
    --ste-success: #28a745;
    --ste-danger: #dc3545;
    --ste-light: #f8f9fa;
    --ste-dark: #343a40;
    --ste-gray: #6c757d;
    --ste-gray-light: #e9ecef;
    --ste-white: #ffffff;
    --ste-shadow: 0 5px 20px rgba(0,0,0,0.08);
    --ste-shadow-hover: 0 10px 30px rgba(0,0,0,0.15);
    --ste-transition: all 0.3s ease;
}

/* Grid System */
.ste-grid {
    display: grid;
    gap: 30px;
    margin: 30px 0;
}

.ste-columns-1 { grid-template-columns: repeat(1, 1fr); }
.ste-columns-2 { grid-template-columns: repeat(2, 1fr); }
.ste-columns-3 { grid-template-columns: repeat(3, 1fr); }
.ste-columns-4 { grid-template-columns: repeat(4, 1fr); }

/* Cards */
.ste-card {
    background: var(--ste-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--ste-shadow);
    transition: var(--ste-transition);
    position: relative;
    animation: fadeInUp 0.6s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ste-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--ste-shadow-hover);
}

.ste-card-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.ste-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.ste-card:hover .ste-card-image img {
    transform: scale(1.1);
}

.ste-card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--ste-secondary);
    color: var(--ste-white);
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(255,107,53,0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.ste-card-content {
    padding: 25px;
}

.ste-card-title {
    margin: 0 0 12px;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
}

.ste-card-title a {
    color: var(--ste-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.ste-card-title a:hover {
    color: var(--ste-primary);
}

.ste-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--ste-gray);
}

.ste-card-location,
.ste-card-duration {
    display: flex;
    align-items: center;
    gap: 5px;
}

.ste-card-location:before {
    content: "\f230";
    font-family: dashicons;
    color: var(--ste-primary);
}

.ste-card-duration:before {
    content: "\f469";
    font-family: dashicons;
    color: var(--ste-secondary);
}

.ste-card-excerpt {
    margin-bottom: 20px;
    color: var(--ste-gray);
    line-height: 1.6;
    font-size: 15px;
}

.ste-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 2px solid var(--ste-gray-light);
    padding-top: 20px;
}

.ste-card-price {
    font-size: 26px;
    font-weight: 700;
    color: var(--ste-dark);
}

.ste-card-price span {
    font-size: 14px;
    font-weight: 400;
    color: var(--ste-gray);
    margin-left: 5px;
}

/* Buttons */
.ste-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--ste-primary);
    color: var(--ste-white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: var(--ste-transition);
    box-shadow: 0 4px 15px rgba(0,115,170,0.3);
}

.ste-btn:hover {
    background: var(--ste-primary-dark);
    color: var(--ste-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,115,170,0.4);
}

.ste-btn-whatsapp {
    background: #25D366;
    box-shadow: 0 4px 15px rgba(37,211,102,0.3);
}

.ste-btn-whatsapp:hover {
    background: #128C7E;
    box-shadow: 0 6px 20px rgba(18,140,126,0.4);
}

.ste-btn-telegram {
    background: #0088cc;
    box-shadow: 0 4px 15px rgba(0,136,204,0.3);
}

.ste-btn-telegram:hover {
    background: #006699;
    box-shadow: 0 6px 20px rgba(0,102,153,0.4);
}

.ste-btn .dashicons {
    font-size: 18px;
    width: 18px;
    height: 18px;
}

/* Filters */
.ste-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
    padding: 25px;
    background: linear-gradient(135deg, var(--ste-light) 0%, var(--ste-white) 100%);
    border-radius: 16px;
    box-shadow: var(--ste-shadow);
}

.ste-filter-group {
    flex: 1;
    min-width: 180px;
}

.ste-filter-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--ste-gray-light);
    border-radius: 10px;
    background: var(--ste-white);
    font-size: 14px;
    color: var(--ste-dark);
    cursor: pointer;
    transition: var(--ste-transition);
}

.ste-filter-group select:hover {
    border-color: var(--ste-primary);
}

.ste-filter-group select:focus {
    outline: none;
    border-color: var(--ste-primary);
    box-shadow: 0 0 0 3px rgba(0,115,170,0.1);
}

/* Load More */
.ste-load-more {
    text-align: center;
    margin: 50px 0;
}

.ste-load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 45px;
    background: linear-gradient(135deg, var(--ste-dark) 0%, #000 100%);
    color: var(--ste-white);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: var(--ste-transition);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.ste-load-more-btn:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.ste-load-more-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Hero Section */
.ste-hero {
    position: relative;
    height: 600px;
    background-size: cover;
    background-position: center;
    color: var(--ste-white);
    margin-bottom: 50px;
}

.ste-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
    display: flex;
    align-items: center;
}

.ste-hero-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.ste-hero-title {
    font-size: 56px;
    font-weight: 800;
    margin: 0 0 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
    animation: slideInLeft 1s ease;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.ste-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px 0;
    animation: fadeIn 1s ease 0.3s both;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.ste-hero-location,
.ste-hero-duration {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    background: rgba(255,255,255,0.15);
    padding: 8px 20px;
    border-radius: 40px;
    backdrop-filter: blur(5px);
}

.ste-hero-badge {
    background: var(--ste-secondary);
    color: var(--ste-white);
    padding: 8px 25px;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(255,107,53,0.4);
}

.ste-hero-price {
    font-size: 48px;
    font-weight: 800;
    margin: 20px 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: slideInRight 1s ease 0.6s both;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.ste-hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    animation: fadeIn 1s ease 0.9s both;
}

.ste-hero-buttons .ste-btn {
    padding: 15px 35px;
    font-size: 16px;
}

/* Gallery */
.ste-gallery {
    margin: 50px 0;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--ste-shadow);
}

.ste-gallery .swiper {
    border-radius: 24px;
}

.ste-gallery .swiper-slide {
    height: 500px;
}

.ste-gallery .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ste-gallery .swiper-button-next,
.ste-gallery .swiper-button-prev {
    color: var(--ste-white);
    background: rgba(0,0,0,0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: var(--ste-transition);
}

.ste-gallery .swiper-button-next:hover,
.ste-gallery .swiper-button-prev:hover {
    background: var(--ste-primary);
    transform: scale(1.1);
}

.ste-gallery .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--ste-white);
    opacity: 0.5;
}

.ste-gallery .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--ste-secondary);
}

/* Quick Info */
.ste-quick-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 50px 0;
    padding: 35px;
    background: linear-gradient(135deg, var(--ste-light) 0%, var(--ste-white) 100%);
    border-radius: 24px;
    box-shadow: var(--ste-shadow);
}

.ste-info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--ste-white);
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--ste-transition);
}

.ste-info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.ste-info-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--ste-primary) 0%, var(--ste-primary-dark) 100%);
    color: var(--ste-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.ste-info-content h4 {
    margin: 0 0 5px;
    font-size: 15px;
    color: var(--ste-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ste-info-content p {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--ste-dark);
}

/* Day by Day */
.ste-days {
    margin: 50px 0;
}

.ste-days h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.ste-days h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--ste-primary), var(--ste-secondary));
    border-radius: 2px;
}

.ste-day {
    border: 1px solid var(--ste-gray-light);
    border-radius: 16px;
    margin-bottom: 15px;
    overflow: hidden;
    background: var(--ste-white);
    transition: var(--ste-transition);
}

.ste-day:hover {
    box-shadow: var(--ste-shadow);
}

.ste-day-header {
    padding: 20px 25px;
    background: linear-gradient(135deg, var(--ste-light) 0%, var(--ste-white) 100%);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--ste-transition);
}

.ste-day.active .ste-day-header {
    background: linear-gradient(135deg, var(--ste-white) 0%, var(--ste-light) 100%);
    border-bottom: 2px solid var(--ste-secondary);
}

.ste-day-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: var(--ste-dark);
}

.ste-day-header .dashicons {
    font-size: 24px;
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.ste-day.active .ste-day-header .dashicons {
    transform: rotate(180deg);
}

.ste-day-content {
    padding: 30px;
    display: none;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ste-day.active .ste-day-content {
    display: block;
}

.ste-day-image {
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
}

.ste-day-image img {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.ste-day-image img:hover {
    transform: scale(1.05);
}

.ste-day-description {
    line-height: 1.8;
    color: var(--ste-gray);
}

/* Included/Excluded */
.ste-included-excluded {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 50px 0;
}

.ste-included,
.ste-excluded {
    padding: 35px;
    border-radius: 24px;
    box-shadow: var(--ste-shadow);
    transition: var(--ste-transition);
}

.ste-included {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
}

.ste-excluded {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
}

.ste-included:hover,
.ste-excluded:hover {
    transform: translateY(-5px);
    box-shadow: var(--ste-shadow-hover);
}

.ste-included h3,
.ste-excluded h3 {
    margin-top: 0;
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 20px;
}

.ste-included ul,
.ste-excluded ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.ste-included li,
.ste-excluded li {
    padding: 12px 0;
    padding-left: 35px;
    position: relative;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    font-size: 16px;
}

.ste-included li:last-child,
.ste-excluded li:last-child {
    border-bottom: none;
}

.ste-included li:before {
    content: "\f147";
    font-family: dashicons;
    color: #28a745;
    position: absolute;
    left: 0;
    top: 12px;
    font-size: 20px;
}

.ste-excluded li:before {
    content: "\f158";
    font-family: dashicons;
    color: #dc3545;
    position: absolute;
    left: 0;
    top: 12px;
    font-size: 20px;
}

/* CTA Section */
.ste-cta {
    text-align: center;
    margin: 60px 0;
    padding: 60px;
    background: linear-gradient(135deg, var(--ste-primary) 0%, var(--ste-primary-dark) 100%);
    border-radius: 32px;
    color: var(--ste-white);
    position: relative;
    overflow: hidden;
}

.ste-cta:before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.ste-cta h2 {
    color: var(--ste-white);
    margin: 0 0 15px;
    font-size: 42px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.ste-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.ste-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.ste-cta-buttons .ste-btn {
    background: var(--ste-white);
    color: var(--ste-primary);
    min-width: 220px;
    padding: 16px 30px;
    font-size: 18px;
}

.ste-cta-buttons .ste-btn:hover {
    background: var(--ste-light);
    transform: translateY(-3px);
}

/* Floating WhatsApp */
.ste-floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.ste-floating-whatsapp.visible {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.ste-floating-whatsapp a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--ste-white);
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(37,211,102,0.4);
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.ste-floating-whatsapp a:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(37,211,102,0.6);
}

.ste-floating-whatsapp .dashicons {
    font-size: 36px;
    width: 36px;
    height: 36px;
}

/* Lightbox */
.ste-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ste-lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(10px);
}

.ste-lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    z-index: 2;
}

.ste-lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.ste-lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: var(--ste-white);
    font-size: 40px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transition: var(--ste-transition);
}

.ste-lightbox-close:hover {
    background: var(--ste-danger);
    transform: rotate(90deg);
}

/* Loading States */
.ste-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: var(--ste-white);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.ste-loading {
    text-align: center;
    padding: 50px;
    grid-column: 1 / -1;
}

.ste-loading .ste-spinner-large {
    display: inline-block;
    width: 50px;
    height: 50px;
    border: 5px solid rgba(0,115,170,0.2);
    border-radius: 50%;
    border-top-color: var(--ste-primary);
    animation: spin 1s linear infinite;
}

.ste-loading p {
    color: var(--ste-gray);
    font-size: 18px;
    margin-top: 20px;
}

/* No Results */
.ste-no-results {
    text-align: center;
    padding: 60px;
    background: var(--ste-light);
    border-radius: 16px;
    color: var(--ste-gray);
    font-size: 18px;
    grid-column: 1 / -1;
}

/* Responsive */
@media (max-width: 992px) {
    .ste-hero-title {
        font-size: 48px;
    }
    
    .ste-hero {
        height: 500px;
    }
    
    .ste-gallery .swiper-slide {
        height: 400px;
    }
    
    .ste-cta h2 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .ste-columns-2,
    .ste-columns-3,
    .ste-columns-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ste-hero-title {
        font-size: 42px;
    }
    
    .ste-hero {
        height: 450px;
    }
    
    .ste-included-excluded {
        grid-template-columns: 1fr;
    }
    
    .ste-cta {
        padding: 40px 20px;
    }
    
    .ste-cta h2 {
        font-size: 32px;
    }
    
    .ste-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .ste-cta-buttons .ste-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .ste-quick-info {
        grid-template-columns: 1fr;
    }
    
    .ste-hero-buttons {
        flex-direction: column;
    }
    
    .ste-hero-buttons .ste-btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .ste-columns-2,
    .ste-columns-3,
    .ste-columns-4 {
        grid-template-columns: 1fr;
    }
    
    .ste-hero-title {
        font-size: 32px;
    }
    
    .ste-hero {
        height: 400px;
    }
    
    .ste-hero-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .ste-hero-price {
        font-size: 36px;
    }
    
    .ste-filters {
        flex-direction: column;
    }
    
    .ste-filter-group {
        width: 100%;
    }
    
    .ste-gallery .swiper-slide {
        height: 300px;
    }
    
    .ste-days h2 {
        font-size: 28px;
    }
    
    .ste-day-header h3 {
        font-size: 16px;
    }
    
    .ste-floating-whatsapp a {
        width: 60px;
        height: 60px;
    }
    
    .ste-floating-whatsapp .dashicons {
        font-size: 30px;
        width: 30px;
        height: 30px;
    }
    
    .ste-card-price {
        font-size: 22px;
    }
}

/* Print Styles */
@media print {
    .ste-hero {
        height: auto;
        color: #000;
        background: none !important;
        page-break-after: avoid;
    }
    
    .ste-hero-overlay {
        background: none;
        position: static;
        color: #000;
    }
    
    .ste-gallery,
    .ste-cta,
    .ste-floating-whatsapp,
    .ste-btn,
    .ste-filters,
    .ste-load-more {
        display: none;
    }
    
    .ste-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
}

/* WhatsApp Button Styles */
.ste-btn-whatsapp {
    background-color: #25D366;
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.ste-btn-whatsapp:hover {
    background-color: #128C7E;
    color: white;
}

.ste-btn-whatsapp .dashicons {
    font-size: 20px;
    width: 20px;
    height: 20px;
}

.ste-btn-telegram {
    background-color: #0088cc;
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    margin-top: 10px;
    transition: background-color 0.3s;
}

.ste-btn-telegram:hover {
    background-color: #006699;
    color: white;
}

.ste-btn-telegram .dashicons {
    font-size: 20px;
    width: 20px;
    height: 20px;
}

/* Floating WhatsApp Button */
.ste-floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    transition: all 0.3s;
}

.ste-floating-whatsapp:hover {
    background-color: #128C7E;
    color: white;
    transform: scale(1.05);
}

.ste-floating-whatsapp .dashicons {
    font-size: 24px;
    width: 24px;
    height: 24px;
}

.ste-floating-text {
    display: inline-block;
}

@media (max-width: 768px) {
    .ste-floating-whatsapp {
        padding: 12px 16px;
    }
    
    .ste-floating-text {
        display: none;
    }
}

/* Widget Buttons */
.ste-widget-buttons {
    margin: 20px 0;
}

.ste-widget-note {
    margin-top: 10px;
    color: #666;
    text-align: center;
}

/* Price Display */
.ste-widget-price {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ste-price-label {
    font-weight: 600;
    color: #333;
}

.ste-price-value {
    font-size: 24px;
    font-weight: 700;
    color: #0073aa;
}