.spa-menu-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.spa-menu-nav {
    background: #f8f9fa;
    padding: 20px 0;
    min-width: 200px;
}

.spa-menu-tab {
    display: block;
    width: 100%;
    padding: 15px 20px;
    border: none;
    background: transparent;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    font-size: 16px;
    color: #666;
}

.spa-menu-tab:hover,
.spa-menu-tab.active {
    background: #fff;
    color: #333;
    border-left-color: #C3D196;
}

.spa-menu-content {
    flex: 1;
    padding: 20px;
    max-height: 80vh;
    overflow-y: auto;
}

.spa-menu-category {
    display: none;
}

.spa-menu-category.active {
    display: block;
}

.spa-menu-item {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.spa-menu-item:last-child {
    border-bottom: none;
}

.spa-menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.spa-menu-item-name {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    flex: 1;
}

.spa-menu-item-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}

.spa-menu-price {
    font-size: 16px;
    font-weight: 600;
    color: #C3D196;
}

.spa-menu-duration {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.spa-menu-minutes {
    font-size: 14px;
    color: #666;
}

.spa-menu-description {
    margin: 10px 0;
    color: #666;
    line-height: 1.5;
}

.spa-menu-link {
    display: inline-block;
    padding: 8px 16px;
    background: #C3D196;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    transition: background 0.3s ease;
}

.spa-menu-link:hover {
    background: #C3D196;
}

.spa-menu-item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

.spa-menu-item-price {
    font-size: 18px;
    font-weight: 600;
    color: #C3D196;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .spa-menu-container {
        flex-direction: column;
        height: 100vh;
        border-radius: 0;
    }
    
    .spa-menu-nav {
        min-width: auto;
        padding: 10px 0;
        overflow-x: auto;
        white-space: nowrap;
        border-bottom: 1px solid #ddd;
    }
    
    .spa-menu-tab {
        display: inline-block;
        width: auto;
        padding: 10px 15px;
        margin-right: 10px;
        border-left: none;
        border-bottom: 2px solid transparent;
        text-align: center;
        min-width: 120px;
    }
    
    .spa-menu-tab:hover,
    .spa-menu-tab.active {
        border-left: none;
        border-bottom-color: #C3D196;
    }
    
    .spa-menu-content {
        flex: 1;
        padding: 15px;
        max-height: none;
        overflow-y: auto;
    }
    
    .spa-menu-item-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .spa-menu-item-meta {
        flex-direction: row;
        align-items: center;
        margin-top: 5px;
        gap: 15px;
    }
    
    .spa-menu-item-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

.post-type-archive-promotion .promotion-archive-wrapper {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
}

.post-type-archive-promotion .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.post-type-archive-promotion .promotion-archive-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.post-type-archive-promotion .promotion-archive-header::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #C3D196, #a8b87a);
    border-radius: 2px;
}

.post-type-archive-promotion .promotion-archive-title {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -1px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.post-type-archive-promotion .promotion-archive-description {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 300;
}

.post-type-archive-promotion .promotion-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.post-type-archive-promotion .promotion-item {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 1px solid rgba(195, 209, 150, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.post-type-archive-promotion .promotion-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #C3D196, #a8b87a);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.post-type-archive-promotion .promotion-item:hover::before {
    opacity: 1;
}

.post-type-archive-promotion .promotion-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.post-type-archive-promotion .promotion-image-wrapper {
    position: relative;
    overflow: hidden;
}

.post-type-archive-promotion .promotion-image {
    overflow: hidden;
    position: relative;
}

.post-type-archive-promotion .promotion-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(195, 209, 150, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.post-type-archive-promotion .promotion-item:hover .promotion-image::after {
    opacity: 1;
}

.post-type-archive-promotion .promotion-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.post-type-archive-promotion .promotion-item:hover .promotion-image img {
    transform: scale(1.1);
}

.post-type-archive-promotion .promotion-no-image {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 220px;
}

.post-type-archive-promotion .no-image-placeholder {
    text-align: center;
    color: #adb5bd;
}

.post-type-archive-promotion .placeholder-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 10px;
}

.post-type-archive-promotion .promotion-title-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 30px 20px 20px;
    z-index: 2;
}

.post-type-archive-promotion .promotion-title {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.3;
}

.post-type-archive-promotion .promotion-title a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.post-type-archive-promotion .promotion-title a:hover {
    color: #C3D196;
}

.post-type-archive-promotion .promotion-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.post-type-archive-promotion .promotion-excerpt {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 0.9rem;
    flex: 1;
}

.post-type-archive-promotion .promotion-meta {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.post-type-archive-promotion .promotion-date {
    color: #adb5bd;
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.post-type-archive-promotion .promotion-date::before {
    content: '📅';
    font-size: 0.7rem;
}

.post-type-archive-promotion .promotion-footer {
    padding: 0 20px 20px;
    margin-top: auto;
}

.post-type-archive-promotion .promotion-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #C3D196, #a8b87a);
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(195, 209, 150, 0.3);
    width: 100%;
    justify-content: center;
}

.post-type-archive-promotion .promotion-read-more::after {
    content: '→';
    transition: transform 0.3s ease;
}

.post-type-archive-promotion .promotion-read-more:hover {
    background: linear-gradient(135deg, #a8b87a, #8fa06a);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(195, 209, 150, 0.4);
}

.post-type-archive-promotion .promotion-read-more:hover::after {
    transform: translateX(3px);
}

.post-type-archive-promotion .no-promotions {
    text-align: center;
    padding: 80px 20px;
    color: #6c757d;
}

.post-type-archive-promotion .no-promotions h2 {
    margin-bottom: 20px;
    color: #2c3e50;
    font-size: 2rem;
    font-weight: 600;
}

.post-type-archive-promotion .no-promotions p {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Pagination Styles */
.post-type-archive-promotion .promotion-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 60px;
}

.post-type-archive-promotion .promotion-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #fff;
    color: #6c757d;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 2px solid transparent;
}

.post-type-archive-promotion .promotion-pagination .page-numbers:hover,
.post-type-archive-promotion .promotion-pagination .page-numbers.current {
    background: linear-gradient(135deg, #C3D196, #a8b87a);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(195, 209, 150, 0.3);
    border-color: #a8b87a;
}

.post-type-archive-promotion .promotion-pagination .page-numbers.prev,
.post-type-archive-promotion .promotion-pagination .page-numbers.next {
    width: auto;
    padding: 0 20px;
    border-radius: 25px;
    font-size: 0.9rem;
}

.post-type-archive-promotion .promotion-pagination .page-numbers.prev::before {
    content: '← ';
}

.post-type-archive-promotion .promotion-pagination .page-numbers.next::after {
    content: ' →';
}

.post-type-archive-promotion .promotion-pagination .dots {
    color: #adb5bd;
    font-weight: 500;
}

/* Medium screens - 2 columns */
@media (max-width: 992px) {
    .post-type-archive-promotion .promotion-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        max-width: 700px;
    }
    
    .post-type-archive-promotion .promotion-content {
        padding: 20px;
    }
}

/* Small screens - 1 column */
@media (max-width: 768px) {
    .post-type-archive-promotion .promotion-archive-wrapper {
        padding: 40px 0;
    }
    
    .post-type-archive-promotion .promotion-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 400px;
    }
    
    .post-type-archive-promotion .promotion-archive-title {
        font-size: 2.2rem;
    }
    
    .post-type-archive-promotion .promotion-content {
        padding: 20px;
    }
    
    .post-type-archive-promotion .promotion-pagination {
        gap: 8px;
    }
    
    .post-type-archive-promotion .promotion-pagination .page-numbers {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .post-type-archive-promotion .promotion-pagination .page-numbers.prev,
    .post-type-archive-promotion .promotion-pagination .page-numbers.next {
        padding: 0 15px;
        font-size: 0.8rem;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .post-type-archive-promotion .container {
        padding: 0 15px;
    }
    
    .post-type-archive-promotion .promotion-archive-title {
        font-size: 1.8rem;
    }
    
    .post-type-archive-promotion .promotion-grid {
        max-width: 100%;
    }
    
    .post-type-archive-promotion .promotion-item:hover {
        transform: translateY(-5px) scale(1.01);
    }
    
    .post-type-archive-promotion .promotion-title-overlay {
        padding: 20px 15px 15px;
    }
    
    .post-type-archive-promotion .promotion-title {
        font-size: 1.1rem;
    }
}

.single-promotion-wrapper {
    padding: 0;
    background: #f8f9fa;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.single-promotion {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    margin: 40px 0;
}

/* Hero Section */
.promotion-hero {
    position: relative;
    min-height: 400px;
}

.promotion-hero-image {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.promotion-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promotion-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.6), rgba(0,0,0,0.3));
    display: flex;
    align-items: center;
    justify-content: center;
}

.promotion-hero-content {
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 0 20px;
}

.promotion-badge {
    display: inline-block;
    margin-bottom: 20px;
}

.badge-text {
    background: linear-gradient(135deg, #C3D196, #a8b87a);
    color: #fff;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.promotion-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0 0 20px 0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    line-height: 1.2;
    color: #fff;
}

.promotion-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.promotion-date {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem;
    opacity: 0.9;
}

.calendar-icon {
    font-size: 1rem;
}

/* No Image Hero */
.promotion-hero-no-image {
    background: linear-gradient(135deg, #C3D196, #a8b87a);
    padding: 80px 40px;
    text-align: center;
    color: #fff;
}

.promotion-hero-no-image .promotion-title {
    color: #fff;
    text-shadow: none;
}

/* Content Section */
.promotion-content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    padding: 60px 40px;
}

.promotion-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

.promotion-description {
    margin-bottom: 40px;
}

.promotion-description h2 {
    color: #2c3e50;
    font-size: 2rem;
    margin: 40px 0 20px 0;
    font-weight: 600;
}

.promotion-description h3 {
    color: #34495e;
    font-size: 1.5rem;
    margin: 30px 0 15px 0;
    font-weight: 600;
}

.promotion-description p {
    margin-bottom: 20px;
}

.promotion-summary {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid #C3D196;
}

.promotion-summary h3 {
    color: #2c3e50;
    margin: 0 0 15px 0;
    font-size: 1.3rem;
}

/* Sidebar */
.promotion-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.promotion-info-card,
.promotion-cta-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.promotion-info-card h3,
.promotion-cta-card h3 {
    color: #2c3e50;
    margin: 0 0 20px 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.info-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f1f3f4;
}

.info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-label {
    font-weight: 600;
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.info-value {
    color: #2c3e50;
    font-size: 1rem;
}

.promotion-tags {
    color: #C3D196;
    font-weight: 500;
}

.promotion-cta-card {
    background: linear-gradient(135deg, #C3D196, #a8b87a);
    color: #fff;
    border: none;
}

.promotion-cta-card h3 {
    color: #fff;
}

.promotion-cta-card p {
    margin-bottom: 25px;
    opacity: 0.9;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #C3D196;
    padding: 15px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.cta-button .arrow {
    transition: transform 0.3s ease;
}

.cta-button:hover .arrow {
    transform: translateX(3px);
}

/* Navigation */
.promotion-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-top: 1px solid #e9ecef;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px;
    background: #fff;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #C3D196, #a8b87a);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-link:hover::before {
    transform: scaleX(1);
}

.nav-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: #C3D196;
}

.nav-link.nav-disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background: #f8f9fa;
}

.nav-link.nav-disabled:hover {
    transform: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-color: #e9ecef;
}

.nav-link.nav-disabled::before {
    display: none;
}

.nav-icon {
    font-size: 1.8rem;
    color: #C3D196;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.nav-link:hover .nav-icon {
    transform: scale(1.1);
}

.nav-content {
    flex: 1;
}

.nav-label {
    display: block;
    font-size: 0.85rem;
    color: #6c757d;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-title {
    display: block;
    color: #2c3e50;
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.3;
}

.nav-next {
    text-align: right;
}

.nav-next .nav-link {
    flex-direction: row-reverse;
}

.nav-next .nav-link:hover .nav-icon {
    transform: translateX(3px) scale(1.1);
}

.nav-previous .nav-link:hover .nav-icon {
    transform: translateX(-3px) scale(1.1);
}

/* Responsive */
@media (max-width: 992px) {
    .promotion-content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 30px;
    }
    
    .promotion-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .single-promotion {
        margin: 20px 0;
        border-radius: 15px;
    }
    
    .promotion-hero-image {
        height: 300px;
    }
    
    .promotion-title {
        font-size: 2rem;
    }
    
    .promotion-content-wrapper {
        padding: 30px 20px;
    }
    
    .promotion-navigation {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }
    
    .nav-link {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .promotion-hero-no-image {
        padding: 60px 20px;
    }
    
    .promotion-title {
        font-size: 1.8rem;
    }
    
    .promotion-content-wrapper {
        padding: 20px 15px;
    }
    
    .promotion-info-card,
    .promotion-cta-card {
        padding: 20px;
    }
}