/* Product Page Styles */
.product-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    width: 100%;
    box-sizing: border-box;
}

.product-row {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    width: 100%;
    margin-bottom: 10px;
    box-sizing: border-box;
}

.product-gallery {
    flex: 1 0 100%;
    max-width: 100%;
    position: sticky;
    top: 20px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.product-info {
    flex: 1 0 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.product-info * {
    max-width: 100%;
    box-sizing: border-box;
}

.gallery-main {
    width: 100%;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

@media (max-width: 900px) {
    .product-row {
        flex-direction: column;
        gap: 0;
        max-width: 100%;
    }
    .product-gallery, .product-info {
        width: 100%;
        max-width: 100%;
        position: static;
    }
    .product-gallery {
        margin-bottom: 32px;
    }
}

/* Gallery Styles */
.product-gallery .gallery-main {
    width: 100%;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-gallery .main-image {
    width: 100%;
    max-width: 480px;
    height: auto;
    display: block;
    box-sizing: border-box;
    border-radius: 10px;
}

.gallery-main {
    position: relative;
    width: 90%;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-main img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
    border: none;
    z-index: 2;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.gallery-nav:hover {
    background: white;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.gallery-nav.prev {
    left: 15px;
}

.gallery-nav.next {
    right: 15px;
}

.gallery-thumbnails.thumbnails-carousel {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 8px;
    margin-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
    justify-content: flex-start;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    background: none;
    max-width: 480px;
}
.gallery-thumbnails.thumbnails-carousel::-webkit-scrollbar {
    display: none;
}
.gallery-thumbnails.thumbnails-carousel:hover::-webkit-scrollbar {
    display: block;
    height: 8px;
    background: #f5f5f5;
}
.gallery-thumbnails.thumbnails-carousel:hover {
    scrollbar-width: thin;
    scrollbar-color: #ccc #f5f5f5;
}
.gallery-thumbnails.thumbnails-carousel:hover::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}
@media (max-width: 768px) {
    .product-gallery, .product-gallery[style*="position: absolute"] {
        max-width: 100vw;
    }
    .product-gallery .gallery-main, .product-gallery .main-image, .gallery-thumbnails.thumbnails-carousel {
        max-width: 98vw;
    }
    .gallery-thumbnails.thumbnails-carousel {
        scrollbar-width: none;
    }
    .gallery-thumbnails.thumbnails-carousel::-webkit-scrollbar {
        display: none;
    }
}

.thumbnail {
    width: 70px;
    height: 50px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.7;
    flex-shrink: 0;
}

.thumbnail:hover {
    opacity: 0.9;
}

.thumbnail.active {
    opacity: 1;
    border: 2px solid #00a19b;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Product Info Styles */
.product-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.product-header {
    margin-bottom: 1px;
}

/* Rating section */
.rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.rating img {
    height: 24px;
}

/* Mobile-specific rating styles */
@media (max-width: 768px) {
    .rating {
        flex-direction: column;
        align-items: center;
        gap: 4px;
        margin-left: auto;
        margin-right: auto;
    }

    .rating img {
        margin-bottom: 2px;
    }

    .rating span {
        font-size: 0.9rem;
    }
}

.product-header h1 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--text-color);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.subtitle {
    font-family: var(--font-secondary);
    font-size: 1.2rem;
    color: #666;
}

/* Date picker styles */
.date-picker-container {
    margin: 20px 0;
}

.date-picker-container label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.date-picker-container input {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.date-picker-container input:focus {
    outline: none;
    border-color: #00a19b;
}

/* Guest selector styles */
.guest-selector-container {
    margin: 20px 0;
}

.guest-selector-container label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.guest-selector-container select {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    background-color: white;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.guest-selector-container select:focus {
    outline: none;
    border-color: #00a19b;
}

/* Experience Variants */
.experience-selector {
    margin: 1px 0;
}

.experience-selector h3 {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-family: var(--font-secondary);
    font-size: 1rem;
    color: #333;
}

.experience-selector label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-family: var(--font-secondary);
    font-size: 1rem;
    color: #333;
}

/* Variant pills with more subtle gradient backgrounds */
.variant-pills {
    display: flex;
    gap: 10px;
    margin: 10px 0;
}

.variant-pill {
    flex: 1;
    padding: 10px 15px;
    border-radius: 30px;
    border: 2px solid #e0e0e0;
    background: white;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    color: #555;
}

/* Gold variant styling - more subtle gradient */
.variant-pill[data-variant="gold"] {
    border-color: #D4AF37;
}

.variant-pill[data-variant="gold"].active {
    background: linear-gradient(to right, rgba(230, 199, 126, 0.2), rgba(212, 175, 55, 0.2));
    color: #333;
    border-color: #D4AF37;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.2);
    font-weight: 600;
}

/* Platinum variant styling - more subtle gradient */
.variant-pill[data-variant="platinum"] {
    border-color: #A0A0A0;
}

.variant-pill[data-variant="platinum"].active {
    background: linear-gradient(to right, rgba(224, 224, 224, 0.2), rgba(160, 160, 160, 0.2));
    color: #333;
    border-color: #A0A0A0;
    box-shadow: 0 2px 8px rgba(160, 160, 160, 0.2);
    font-weight: 600;
}

/* Diamond variant styling - more subtle gradient */
.variant-pill[data-variant="diamond"] {
    border-color: #9370DB;
}

.variant-pill[data-variant="diamond"].active {
    background: linear-gradient(to right, rgba(147, 112, 219, 0.2), rgba(123, 104, 238, 0.2));
    color: #333; /* Change to dark text for better readability with lighter background */
    border-color: #9370DB;
    box-shadow: 0 2px 8px rgba(123, 104, 238, 0.2);
    font-weight: 600;
}

/* Hover effects for variant pills */
.variant-pill:hover {
    transform: translateY(-2px);
}

.variant-pill[data-variant="gold"]:hover:not(.active) {
    background-color: rgba(212, 175, 55, 0.05);
}

.variant-pill[data-variant="platinum"]:hover:not(.active) {
    background-color: rgba(160, 160, 160, 0.05);
}

.variant-pill[data-variant="diamond"]:hover:not(.active) {
    background-color: rgba(123, 104, 238, 0.05);
}

/* Enhanced package card styling */
.package-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid #eaeaea;
}

/* Styling for each category */
.package-category {
    margin-bottom: 0;
}

.category-header {
    background-color: #f9f9f9;
    padding: 14px 18px;
    font-weight: 600;
    font-family: var(--font-secondary);
    color: #333;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
}

.category-header i {
    color: #00a19b;
    margin-right: 12px;
    width: 22px;
    text-align: center;
    font-size: 1.15rem;
}

.category-items {
    padding: 0;
}

/* Package items - consistent across all variants */
.package-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 14px 18px;
    border-bottom: 1px solid #f5f5f5;
    font-size: 0.95rem;
    font-family: var(--font-secondary);
}

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

/* Improved spacing for item name and price */
.item-name {
    padding-right: 10px;
    flex: 1;
}

/* Style for the item price area */
.item-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    min-width: 90px;
    text-align: right;
}

/* Original price styling - consistent for all */
.original-price {
    font-size: 0.9rem;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 4px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    line-height: 1.2;
}

/* Included tag styling - consistent for all */
.included-tag {
    font-size: 0.8rem;
    color: #00a19b;
    background-color: rgba(0, 161, 155, 0.1);
    padding: 4px 10px;
    border-radius: 12px;
    font-weight: 500;
    white-space: nowrap;
}

/* Styling for highlight items */
.feature-highlights {
    margin: 15px 0;
}

.highlight-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    padding: 8px 12px;
    background-color: rgba(0, 161, 155, 0.05);
    border-radius: 8px;
}

.highlight-icon {
    color: #00a19b;
    margin-right: 10px;
    font-size: 1.1rem;
    width: 24px;
    text-align: center;
    font-size: 1.15rem;
}

.highlight-text {
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
}

/* Summary line styling */
.summary-line {
    background-color: #f9f9f9;
    border-bottom: 1px solid #eee !important;
}

/* Hover effect for items */
.package-item:hover {
    background-color: #fafafa;
}

/* Mobile-specific adjustments */
@media (max-width: 768px) {
    .category-header {
        padding: 14px 25px;
        font-size: 1rem;
    }

    .package-item {
        padding: 14px 25px;
        font-size: 0.9rem;
        align-items: center;
    }

    .package-item .original-price {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        line-height: 1.2;
        max-width: 100px;
        text-align: right;
    }

    .highlight-item {
        padding: 10px 25px;
        margin-left: 10px;
        margin-right: 10px;
    }

    .original-price {
        margin-bottom: 5px;
    }

    .included-tag {
        padding: 4px 10px;
        font-size: 0.75rem;
    }

    .item-price {
        min-width: 90px;
    }
}

/* Even smaller screens may need more adjustments */
@media (max-width: 375px) {
    .category-header, .package-item {
        padding: 12px 20px;
    }
}

/* Disclaimers */
.disclaimers {
    font-size: 0.9rem;
    color: #666;
    margin: 1px 0;
}

/* Enhanced pricing section styles */
.price-section {
    background: linear-gradient(to right, #f9f9f9, #fff);
    border-radius: 10px;
    padding: 15px;
    margin: 1px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.price-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, #00a19b, #008080);
    border-radius: 5px 0 0 5px;
}

/* Package label in top left */
.package-label {
    position: absolute;
    top: 0;
    left: 10px;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 0 0 5px 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

/* Gold package label */
.package-label.gold {
    background: linear-gradient(to right, #E6C77E, #D4AF37);
    color: #333;
}

/* Platinum package label */
.package-label.platinum {
    background: linear-gradient(to right, #E0E0E0, #A0A0A0);
    color: #333;
}

/* Diamond package label */
.package-label.diamond {
    background: linear-gradient(to right, #9370DB, #7B68EE);
    color: white;
}

.price {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    margin: 1px 0;
    padding-top: 15px;
}

.price::after {
    content: 'All-Inclusive';
    position: absolute;
    top: 3px;
    right: 5px;
    background-color: #00a19b;
    color: white;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.final-price {
    font-size: 2.4rem;
    font-weight: 600;
    color: #333;
    font-family: var(--font-secondary);
    position: relative;
}

.final-price::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, transparent, #00a19b, transparent);
    margin: 5px auto 1px;
    border-radius: 2px;
}

/* Add savings callout */
.price-section .savings {
    display: block;
    text-align: center;
    font-size: 0.9rem;
    color: #00a19b;
    font-weight: 500;
    margin-top: 1px;
}

/* Pricing section on mobile */
@media (max-width: 768px) {
    .price-section {
        padding: 15px;
        margin: 20px 0;
    }

    .final-price {
        font-size: 2rem;
    }

    .price::after {
        right: 0;
        top: -10px;
    }
}

/* Payment Options */
.payment-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 1px 0;
}

.payment-option {
    padding: 20px;
    border: 2px solid #eee;
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    position: relative;
}

.payment-option:hover {
    border-color: var(--primary-color);
}

.payment-option h4 {
    margin-bottom: 8px;
    font-family: var(--font-primary);
}

.payment-option p {
    color: #666;
    font-size: 0.9rem;
}

.payment-option::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.payment-option.active {
    border-color: var(--primary-color);
    background-color: rgba(0, 161, 155, 0.05);
}

.payment-option.active::before {
    background-color: var(--primary-color);
}

.payment-option:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 161, 155, 0.1);
}

.payment-info {
    margin: 1px 0 20px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 8px;
}

.payment-detail {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.payment-detail:last-of-type {
    margin-bottom: 12px;
}

.payment-detail span {
    font-weight: 500;
}

.payment-detail .amount {
    font-weight: 600;
}

.payment-note {
    font-size: 0.85rem;
    color: #666;
    margin: 5px 0 0;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .payment-options {
        margin: 15px 0;
    }

    .payment-option {
        padding: 15px;
    }

    .payment-option h4 {
        font-size: 1rem;
    }

    .book-trip-btn {
        padding: 14px;
        font-size: 1rem;
    }
}

/* Book Button */
.book-trip-btn {
    margin-top: 1px;
    width: 100%;
    background: linear-gradient(to right, #00a19b, #008080);
    color: white;
    border: none;
    padding: 16px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-secondary);
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 161, 155, 0.2);
}

.book-trip-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 161, 155, 0.3);
}

/* Important Information Accordions styling */
.important-info {
    margin-top: 40px;
}

/* Enhanced accordion container styling */
.accordion-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8e8e8;
    margin: 30px 0;
    background: white;
}

.accordion {
    border-bottom: 1px solid #eaeaea;
    background: white;
    margin-bottom: 0;
    position: relative;
}

.accordion:last-child {
    border-bottom: none;
}

.accordion-header {
    padding: 18px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: #fff;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background: #f7f7f7;
}

.accordion.active .accordion-header {
    background: #f0f9f9;
    border-left: 3px solid #00a19b;
    padding-left: 19px; /* Adjust for border width */
}

.important-info .accordion.active .accordion-header {
    background: #f0f9f9 !important;
    border-left: 3px solid #00a19b !important;
    padding-left: 19px !important; /* Adjust for border width */
}

.accordion-header h3 {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    margin: 0;
    color: #333;
    font-weight: 600;
}

.accordion-icon {
    font-size: 1.2rem;
    color: #00a19b;
    transition: all 0.3s ease;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 161, 155, 0.1);
    border-radius: 50%;
}

.accordion.active .accordion-icon {
    background: rgba(0, 161, 155, 0.2);
}

/* Fixed accordion content display */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease, border-left 0.3s ease;
    padding: 0 22px;
    background: #f9f9f9;
    border-left: 3px solid transparent;
}

.accordion.active .accordion-content {
    padding: 20px 22px 20px 19px; /* Add proper padding with border adjustment */
    border-left: 3px solid #00a19b;
}

/* Ensure important info accordions have proper border styling */
.important-info .accordion-content {
    border-left: 3px solid transparent;
}

.important-info .accordion.active .accordion-content {
    border-left: 3px solid #00a19b;
    padding-left: 19px; /* Adjust for border width */
}

.accordion-content p {
    margin: 0 0 15px;
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    padding: 0; /* Ensure consistent padding */
}

.accordion-content p:last-child {
    margin-bottom: 0; /* Remove extra bottom margin */
}

/* Section heading for accordions */
.important-info h2 {
    font-family: var(--font-secondary);
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

/* CSS-only sticky gallery approach */
@media (min-width: 769px) {
    .product-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "gallery info"
            "important important"
            "comparison comparison"
            "itinerary itinerary"
            "features features"
            "how-it-works how-it-works"
            "testimonials testimonials"
            "faq faq";
        gap: 30px;
    }

    .product-gallery {
        grid-area: gallery;
        position: sticky;
        top: 20px;
        align-self: start;
        height: fit-content;
        max-height: calc(100vh - 40px);
        overflow-y: auto;
    }

    .product-info {
        grid-area: info;
    }

    .important-info {
        grid-area: important;
        position: relative;
        z-index: 2;
        margin-top: 20px;
    }

    .comparison-section {
        grid-area: comparison;
        width: 100%;
    }

    .recommended-itinerary {
        grid-area: itinerary;
    }

    .features {
        grid-area: features;
    }

    .how-it-works {
        grid-area: how-it-works;
    }

    .testimonials {
        grid-area: testimonials;
    }

    .faq {
        grid-area: faq;
    }

    .product-grid {
        display: contents;
    }

    .gallery-main {
        margin-bottom: 15px;
    }

    .gallery-thumbnails {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .carousel-dots {
        display: none !important;
    }
}

/* Clean up any transitions */
.product-gallery {
    transition: none !important;
    transform: none !important;
}

/* Mobile layout - keep the original structure */
@media (max-width: 768px) {
    .product-container {
        display: block;
    }

    .product-grid {
        display: block;
    }

    .product-gallery {
        position: static !important;
        top: auto !important;
    }

    .gallery-main img {
        max-height: none;
        border-radius: 10px;
    }

    .carousel-dots {
        display: flex !important;
        justify-content: center !important;
        margin: 15px 0 !important;
    }

    .product-header {
        text-align: center;
    }

    .product-header h1 {
        text-align: center;
    }

    .product-header .subtitle {
        text-align: center;
    }

    .product-header .rating {
        justify-content: center;
        text-align: center;
    }
}

/* Features Section */
.features {
    margin: 1px 0;
    display: flex;
    flex-direction: column;
}

.feature {
    display: flex;
    align-items: center;
    margin: 1px 0;
    padding: 0;
}

.feature.reverse {
    flex-direction: row-reverse;
}

.feature-image {
    flex: 1;
    padding: 0;
}

.feature-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.feature-content {
    flex: 1;
    padding: 0 30px;
}

.feature-content h2 {
    font-family: var(--font-secondary);
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #333;
}

.feature-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

/* Mobile adjustments - keep the spacing here */
@media (max-width: 768px) {
    .feature {
        flex-direction: column;
        margin: 30px 0;
        padding: 0;
    }

    .feature.reverse {
        flex-direction: column;
    }

    .feature-image {
        width: 100%;
        margin-bottom: 20px;
        padding: 0;
    }

    .feature-content {
        width: 100%;
        padding: 0;
    }

    .feature-content h2 {
        font-size: 1.5rem;
        margin-bottom: 10px;
        text-align: center;
    }

    .feature-content p {
        text-align: center;
    }
}

/* Recommended Itinerary section with 20px top and bottom margins */
.recommended-itinerary {
    background: white;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    margin: 20px 0;
    padding-bottom: 20px;
    border: 1px solid #eaeaea;
}

.recommended-itinerary h2 {
    font-family: var(--font-secondary);
    font-size: 1.4rem;
    text-align: center;
    margin: 0;
    padding: 20px;
    color: #333;
    background: linear-gradient(to right, #f9f9f9, #f5f5f5);
    border-bottom: 1px solid #eee;
}

/* Completely revised mobile carousel styling */
@media (max-width: 768px) {
    .recommended-itinerary {
        padding-bottom: 20px;
    }

    .itinerary-carousel {
        display: flex !important;
        flex-direction: row !important;
        overflow-x: scroll !important;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        padding: 15px 0 !important;
        margin: 0 15px !important;
        scroll-snap-type: x mandatory;
        width: calc(100% - 30px) !important;
        gap: 15px !important;
    }

    .itinerary-carousel::-webkit-scrollbar {
        display: none;
    }

    .itinerary-carousel {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .itinerary-carousel img {
        min-width: 85% !important;
        width: 85% !important;
        flex: 0 0 auto !important;
        scroll-snap-align: center;
        margin-right: 15px !important;
        border-radius: 8px !important;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15) !important;
        display: block !important;
        height: auto !important;
    }

    .itinerary-carousel img:last-child {
        margin-right: 0 !important;
    }

    .carousel-dots {
        display: flex !important;
        justify-content: center !important;
        margin: 15px 0 !important;
    }

    .carousel-dot {
        width: 8px !important;
        height: 8px !important;
        background: #ccc !important;
        border-radius: 50% !important;
        margin: 0 5px !important;
        cursor: pointer !important;
    }

    .carousel-dot.active {
        background: #00a19b !important;
    }
}

/* Desktop carousel */
.itinerary-carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 20px;
}

.itinerary-carousel img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.itinerary-carousel img:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.itinerary-description {
    padding: 0 30px 10px;
    text-align: center;
}

.itinerary-description p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

/* How It Works section with reduced spacing on mobile and no borders */
.how-it-works {
    margin: 1px 0;
    padding: 30px 0;
}

.how-it-works h2 {
    font-family: var(--font-secondary);
    font-size: 1.4rem;
    text-align: center;
    margin: 0 0 25px;
    color: #333;
}

.steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin: 1px 0;
}

.step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #00a19b, #008080);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: var(--font-secondary);
}

.step h3 {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    margin: 0 0 10px;
    color: #333;
}

.step p {
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Mobile adjustments with reduced spacing and no borders */
@media (max-width: 768px) {
    .steps {
        flex-direction: column;
        gap: 10px;
    }

    .step {
        padding: 10px;
        margin-bottom: 5px;
        border: none;
    }

    .step-number {
        margin-bottom: 10px;
    }

    .step h3 {
        margin: 0 0 5px;
    }

    .step:not(:last-child) {
        border-bottom: none;
        padding-bottom: 10px;
    }
}

/* Testimonials section with 1px margin */
.testimonials {
    padding: 40px 20px;
    text-align: center;
    background-color: white;
    margin: 1px 0;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    padding: 30px;
    border: 1px solid #eaeaea;
    overflow: hidden;
}

.testimonials h2 {
    font-family: var(--font-secondary);
    font-size: 1.4rem;
    text-align: center;
    margin: 0 0 45px;
    color: #333;
}

/* Highlight "400 Families" in teal */
.testimonials h2 .highlight {
    color: #00a19b;
    font-weight: 600;
}

/* Grid layout with equal heights */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}

/* Family testimonial cards */
.testimonial-container {
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.testimonial {
    background-color: white;
    padding: 25px;
    padding-top: 75px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: left;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #f0f0f0;
    position: relative;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Family image at top of testimonial - smaller and overlapping */
.family-image {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    width: 30%;
    height: auto;
    z-index: 2;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 3px solid white;
    background: white;
}

.family-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Green stars styling - moved down */
.testimonial-stars {
    height: 20px;
    width: auto;
    margin: 25px auto 20px;
    display: block;
}

.quote {
    font-style: italic;
    margin: 15px 0;
    flex-grow: 1;
    position: relative;
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    padding: 0 5px;
}

/* Add quote marks styling to match screenshot */
.quote::before {
    content: '"';
    font-size: 36px;
    color: #00a19b;
    opacity: 0.2;
    position: absolute;
    left: -10px;
    top: -18px;
}

.author {
    font-weight: 600;
    color: #333;
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    margin-top: auto;
    padding-top: 15px;
    position: relative;
}

.author::before {
    content: '';
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
    position: absolute;
    top: 0;
    left: 0;
}

/* Mobile-specific adjustments for testimonials */
@media (max-width: 768px) {
    .testimonials {
        padding: 40px 20px 60px;
        margin: 1px 0;
    }

    .testimonial-grid {
        display: none; /* Hide grid on mobile */
    }

    .testimonial-carousel {
        display: block; /* Show carousel on mobile */
    }

    .testimonial-dots {
        display: flex; /* Show dots on mobile */
    }

    .testimonial-carousel .carousel-item {
        transition: none; /* Remove transition for smoother sliding */
    }

    .testimonial-carousel .testimonial-container {
        margin-top: 40px;
    }

    .testimonial-carousel .testimonial {
        width: 100%;
        padding: 60px 20px 25px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    }

    .testimonial-carousel .quote {
        font-size: 0.95rem;
        line-height: 1.6;
        text-align: center;
    }

    .testimonial-carousel .author {
        text-align: center;
        padding-top: 15px;
    }

    .testimonial-carousel .author::before {
        left: 50%;
        transform: translateX(-50%);
    }

    .testimonial-carousel .carousel-item {
        padding: 0 20px;
    }

    .testimonial-carousel .testimonial-container {
        width: 100%;
    }

    .testimonial-carousel {
        margin-bottom: 25px;
    }
}

@media (max-width: 480px) {
    .testimonial-carousel .testimonial {
        padding: 50px 15px 20px;
    }
}

/* Improved accordion animations and mobile margin */
.faq {
    padding: 30px 20px 60px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: -20px;
}

@media (max-width: 768px) {
    .faq {
        padding: 20px 15px 50px;
        margin-top: 1px;
    }
}

.accordion-item {
    margin-bottom: 12px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    background-color: white;
}

.accordion-button {
    width: 100%;
    text-align: left;
    padding: 18px 20px;
    background-color: white;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 1rem;
    font-family: var(--font-secondary);
    font-weight: 600;
    color: #333;
    position: relative;
    transition: background-color 0.3s ease;
    display: block;
}

.accordion-button::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.accordion-button.active {
    background-color: #f9f9f9;
}

.accordion-button.active::after {
    content: '−';
}

/* Fix accordion content animation */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: #f9f9f9;
    padding: 0 20px;
}

.accordion-content.active {
    max-height: 1000px;
    padding: 20px;
    transition: max-height 0.5s ease-in;
}

.accordion-content p {
    margin: 0;
    color: #555;
    line-height: 1.6;
    font-family: var(--font-secondary);
    font-size: 0.95rem;
}

/* Feature Highlights */
.feature-highlights {
    margin: 1px 0;
    padding: 0.75rem 1rem;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.highlight-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.highlight-item:last-child {
    margin-bottom: 0;
}

.highlight-icon {
    margin-right: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
}

.highlight-icon i {
    color: #00A3A3;
    font-size: 1.25rem;
}

.highlight-text {
    font-weight: 500;
    color: #333;
}

/* Included label - adjusted position and rotation */
.included-label {
    position: absolute;
    top: -3px;
    right: -20px;
    background-color: #00a19b;
    color: white;
    font-size: 0.6rem;
    font-weight: 500;
    padding: 1px 6px;
    transform: rotate(15deg);
    transform-origin: top right;
    z-index: 2;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    text-decoration: none;
}

/* Included badge - new implementation */
.included-badge {
    display: inline-block;
    background-color: #00a19b;
    color: white;
    font-size: 0.7rem;
    font-weight: 500;
    padding: 2px 8px;
    border-radius: 4px;
    line-height: 1;
}

/* Included label - clean, simple implementation */
.included-tag {
    display: inline-block;
    background-color: #00a19b;
    color: white;
    font-size: 0.7rem;
    font-weight: 500;
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 5px;
}

/* Summary line styling */
.package-item.summary-line {
    margin-bottom: 15px;
    border-bottom: 1px dashed #ddd;
    padding-bottom: 10px;
}

.package-item.summary-line span {
    color: #333;
    font-size: 1rem;
    text-decoration: none;
}

.package-item.summary-line .original-price {
    text-decoration: none;
}

/* Refined mobile styling with right-aligned prices */
@media (max-width: 768px) {
    .package-item {
        display: grid;
        grid-template-columns: 60% 40%;
        gap: 5px;
        align-items: center;
        padding: 6px 0;
    }

    .package-item .item-name {
        font-size: 0.85rem;
        line-height: 1.2;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    .package-item .original-price {
        font-size: 0.8rem;
        text-align: right;
        justify-self: end;
        padding-right: 15px;
        line-height: 1.1;
        width: 100%;
        display: block;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .included-label {
        position: absolute;
        top: -3px;
        right: -20px;
        background-color: #00a19b;
        color: white;
        font-size: 0.6rem;
        font-weight: 500;
        padding: 1px 6px;
        transform: rotate(15deg);
        transform-origin: top right;
        z-index: 2;
        border-radius: 2px;
        box-shadow: 0 1px 3px rgba(0,0,0,0.2);
        text-decoration: none;
    }

    .package-item.summary-line {
        grid-column: 1 / span 2;
    }

    .package-item.summary-line span {
        font-size: 0.95rem;
    }

    .package-card {
        overflow: hidden;
    }

    .package-item span {
        line-height: 1.2;
    }
}

/* Ensure the original-price element has proper positioning for the included label */
.package-item .original-price {
    font-weight: 500;
    position: relative;
    text-decoration: line-through;
}

/* Payment section styling */
.payment-title {
    font-family: var(--font-secondary);
    font-size: 1.4rem;
    margin: 10px 0 1px;
    color: #333;
}

.payment-options {
    display: flex;
    gap: 10px;
    margin: 1px 0;
}

.payment-option {
    flex: 1;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 10px;
    background: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.payment-option h4 {
    font-family: var(--font-secondary);
    font-size: 1.05rem;
    margin: 0 0 1px;
    color: #333;
}

.payment-option p {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
}

.payment-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: #00a19b;
    transition: width 0.3s ease;
}

.payment-option.active {
    border-color: #00a19b;
    box-shadow: 0 4px 12px rgba(0, 161, 155, 0.1);
}

.payment-option.active::before {
    width: 100%;
}

.payment-option:hover {
    border-color: #00a19b;
    transform: translateY(-2px);
}

/* Payment info section */
.payment-info {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 10px 15px;
    margin: 1px 0 10px;
}

.payment-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
    border-bottom: 1px dashed #e0e0e0;
}

.payment-detail:last-of-type {
    border-bottom: none;
}

.payment-detail span {
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    color: #333;
}

.payment-detail .amount {
    font-weight: 600;
    color: #00a19b;
}

.payment-note {
    font-size: 0.8rem;
    color: #666;
    margin-top: 5px;
    font-style: italic;
    text-align: center;
}

/* Responsive design for mobile */
@media (max-width: 768px) {
    .payment-options {
        flex-direction: column;
    }

    .payment-option {
        padding: 12px;
    }

    .payment-option h4 {
        font-size: 1rem;
    }

    .book-trip-btn {
        padding: 14px;
        font-size: 1rem;
    }
}

/* Class for when gallery should stop being sticky */
.product-gallery.static-position {
    position: relative !important;
    top: auto !important;
    transform: translateY(calc(100% - 100vh + 20px));
}

/* FAQ section title with secondary font and 1.6rem size */
.faq h2 {
    font-family: var(--font-secondary);
    font-size: 1.6rem;
    margin-bottom: 30px;
    color: #333;
    text-align: center;
}

/* Make sure footer styling is consistent with homepage */
footer {
    background-color: #f4f4f4;
    color: #000;
    padding: 40px 20px 30px;
}

.wave-separator {
    height: 50px;
    background-image: url('../images/wave-separator.svg');
    background-size: cover;
    background-repeat: no-repeat;
    margin-top: -20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-logo {
    flex: 0 0 200px;
}

.footer-logo img {
    height: 70px;
}

.footer-sections {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    flex: 1;
    justify-content: flex-end;
}

.footer-section {
    margin-bottom: 30px;
    min-width: 130px;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: #000;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section a {
    color: #555;
    text-decoration: none;
    font-size: 0.85rem;
    line-height: 1.7;
    transition: color 0.3s;
}

.footer-section a:visited,
.footer-section a:active,
.footer-section a:focus {
    color: #555;
    text-decoration: none;
}

.footer-section a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.copyright {
    margin-top: 40px;
    text-align: center;
    font-size: 0.8rem;
    color: #666;
}

/* Mobile Footer Styles */
@media (max-width: 768px) {
    footer {
        padding: 20px 0 30px;
    }

    .wave-separator {
        display: none;
    }

    .footer-content {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 15px;
    }

    .footer-logo {
        margin-bottom: 25px;
        flex: 0 0 10px;
        width: auto;
    }

    .footer-logo img {
        height: 60px;
    }

    .footer-sections {
        width: 100%;
        flex-direction: column;
        gap: 0;
    }

    .footer-section {
        width: 100%;
        margin: 0;
        border-bottom: 1px solid #ddd;
    }

    .footer-section h4 {
        margin: 0;
        padding: 15px 0;
        position: relative;
        cursor: pointer;
    }

    .footer-section h4::after {
        content: '+';
        position: absolute;
        right: 10px;
        font-size: 20px;
    }

    .footer-section.active h4::after {
        content: '-';
    }

    .footer-links {
        height: 0;
        overflow: hidden;
        transition: none;
        padding: 0 0 0 15px;
        display: none;
    }

    .footer-section.active .footer-links {
        height: auto;
        padding-bottom: 15px;
        display: block;
    }
}

/* FAQ-specific accordion styles */
.faq .accordion-button {
    width: 100%;
    text-align: left;
    padding: 18px 20px;
    background-color: white;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 1rem;
    font-family: var(--font-secondary);
    font-weight: 600;
    color: #333;
    position: relative;
    transition: background-color 0.3s ease;
    display: block;
}

.faq .accordion-button::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.faq .accordion-button.active {
    background-color: #f9f9f9;
}

.faq .accordion-button.active::after {
    content: '−';
}

.faq .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    background-color: #f9f9f9;
    padding: 0 20px;
}

.faq .accordion-content.active {
    max-height: 1000px;
    padding: 20px;
    transition: max-height 0.5s ease-in;
}

/* Important Information accordions - improved transitions */
.important-info .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, 
                padding 0.4s ease-out,
                border-left 0.3s ease;
    background-color: #f9f9f9;
    padding: 0 22px;
    border-left: 3px solid transparent;
    box-sizing: border-box;
}

.important-info .accordion.active .accordion-content {
    padding: 20px 22px;
    border-left: 3px solid #00a19b;
    overflow: visible;
}

/* Simplified header transitions */
.important-info .accordion-header {
    padding: 18px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: #fff;
    transition: background-color 0.3s ease;
}

.important-info .accordion.active .accordion-header {
    background: #f0f9f9;
}

/* Icon styling without rotation */
.important-info .accordion-icon {
    font-size: 1.2rem;
    color: #00a19b;
    transition: background-color 0.3s ease;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 161, 155, 0.1);
    border-radius: 50%;
}

.important-info .accordion.active .accordion-icon {
    background: rgba(0, 161, 155, 0.2);
}

/* Notification styles - consistent across all pages */
#notification-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    max-width: 550px;
    width: 90%;
    pointer-events: none;
}

.notification {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-family: 'Poppins', sans-serif;
    pointer-events: all;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-out;
    z-index: 10000;
    min-width: 400px;
}

.notification.show {
    opacity: 1;
    visibility: visible;
}

.notification-header {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding-right: 32px;
}

.notification-icon {
    background: #ff6b35;
    color: white;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 15px;
    flex-shrink: 0;
    margin-top: 1px;
}

.notification-content {
    flex: 1;
    min-width: 0;
}

.notification-title {
    font-weight: 600;
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.3;
}

.notification-message {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
    word-wrap: break-word;
}

.notification-actions {
    display: flex;
    justify-content: center;
    margin-top: 4px;
}

.notification-ok {
    background: #2be9d7;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Poppins', sans-serif;
    min-width: 100px;
}

.notification-ok:hover {
    background: #20c4b4;
    transform: translateY(-1px);
}

.notification-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 20px;
    color: #999;
    cursor: pointer;
    padding: 4px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.notification-close:hover {
    color: #666;
    background: #f5f5f5;
}

/* Mobile-specific improvements */
@media (max-width: 768px) {
    #notification-container {
        position: fixed !important;
        top: 50% !important;
        left: 15px !important;
        right: 15px !important;
        width: auto !important;
        max-width: none !important;
        transform: translateY(-50%) !important;
        margin: 0 !important;
        padding: 0 !important;
        box-sizing: border-box !important;
    }

    .notification {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: auto !important;
        margin: 0 !important;
        padding: 18px 16px !important;
        gap: 12px !important;
        border-radius: 8px !important;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12) !important;
        box-sizing: border-box !important;
    }

    .notification-header {
        gap: 12px;
        padding-right: 28px;
    }

    .notification-icon {
        width: 26px;
        height: 26px;
        font-size: 14px;
    }

    .notification-title {
        font-size: 15px;
        margin-bottom: 6px;
    }

    .notification-message {
        font-size: 13px;
        line-height: 1.35;
    }

    .notification-ok {
        padding: 10px 24px;
        font-size: 13px;
        border-radius: 5px;
        min-width: 70px;
    }

    .notification-close {
        top: 14px;
        right: 14px;
        font-size: 18px;
        width: 24px;
        height: 24px;
        padding: 3px;
    }
}

@keyframes fadeInScale {
    from {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0;
    }
    to {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

/* Scarcity indicator styling */
.scarcity-indicator {
    display: flex;
    align-items: center;
    margin-top: 8px;
    font-size: 0.9rem;
    font-family: var(--font-secondary);
    color: #555;
}

/* Dot styling with animation */
.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 8px;
    animation: pulse 1.5s infinite;
}

/* Color variants */
.dot.green {
    background-color: #2ecc71;
}

.dot.yellow {
    background-color: #f1c40f;
}

.dot.red {
    background-color: #e74c3c;
}

/* Pulse animation */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Calendar day indicator styling */
.flatpickr-day.low-stock {
    color: #e74c3c;
    font-weight: 600;
}

.flatpickr-day.medium-stock {
    color: #f1c40f;
    font-weight: 600;
}

.flatpickr-day.high-stock {
    color: #2ecc71;
}

/* Tiny dots on calendar days */
.flatpickr-day .stock-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%);
}

.flatpickr-day.low-stock .stock-dot {
    background-color: #e74c3c;
}

.flatpickr-day.medium-stock .stock-dot {
    background-color: #f1c40f;
}

/* Direct targeting for mobile spacing issues */
@media (max-width: 768px) {
    /* Target the entire package card for mobile */
    .package-card {
        padding: 0 !important; /* Remove any existing padding */
        border-radius: 12px;
        overflow: hidden;
    }

    /* Force category headers to have proper padding */
    .package-category .category-header {
        padding: 14px 24px !important;
        margin: 0 !important;
    }

    /* Force all package items to have proper padding */
    .package-card .package-item,
    .package-category .category-items .package-item {
        padding: 14px 24px !important;
        margin: 0 !important;
        box-sizing: border-box !important;
        width: 100% !important;
    }

    /* Ensure text is properly spaced */
    .package-item .item-name {
        padding-right: 15px !important;
    }

    /* Ensure price text has breathing room */
    .package-item .item-price {
        min-width: 95px !important;
        text-align: right !important;
    }

    /* Force any potential container issues to be resolved */
    .category-items,
    .package-items {
        padding: 0 !important;
        margin: 0 !important;
        width: 100% !important;
    }

    /* Add specific fix for price labels */
    .item-price .included-tag {
        display: inline-block !important;
        margin-top: 4px !important;
        padding: 4px 10px !important;
    }

    /* Fix for the original prices */
    .item-price .original-price {
        padding-right: 0 !important;
        text-align: right !important;
    }
}

/* Testimonial Carousel for Mobile */
.testimonial-carousel {
    display: none;
    position: relative;
    overflow: hidden;
    margin-top: 60px;
    width: 100%;
}

.testimonial-carousel .carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

.testimonial-carousel .carousel-item {
    flex: 0 0 100%;
    width: 100%;
    padding: 0 5px;
}

.testimonial-carousel .testimonial {
    margin-bottom: 40px;
}

.testimonial-carousel .carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 2;
    transition: all 0.3s ease;
}

.testimonial-prev {
    left: 5px;
}

.testimonial-next {
    right: 5px;
}

.testimonial-dots {
    display: none;
    justify-content: center;
    margin: 30px 0 10px;
    position: relative;
    z-index: 2;
}

.testimonial-dots .carousel-dot {
    width: 8px;
    height: 8px;
    background-color: #ccc;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.testimonial-dots .carousel-dot.active {
    background-color: #00a19b;
}

/* Mobile-specific adjustments */
@media (max-width: 768px) {
    .testimonial-grid {
        display: none; /* Hide grid view on mobile */
    }

    .testimonial-scroll-wrapper {
        display: block; /* Show scrollable carousel on mobile */
    }

    .testimonial-dots {
        display: flex; /* Show dots on mobile */
    }

    .testimonials-container {
        padding: 25px 0 35px; /* Reduced padding on the container for mobile */
    }

    .testimonials h2 {
        margin-bottom: 20px;
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .mobile-testimonial {
        flex: 0 0 85%;
        min-width: 250px;
    }

    .mobile-family-image {
        width: 60px;
        height: 60px;
        top: -30px;
    }
}

/* Updated testimonial CSS for product.css */
/* Testimonial scrollable carousel for mobile */
.testimonial-scroll-wrapper {
    display: none; /* Hidden on desktop */
    margin-top: 40px;
    width: 100%;
    position: relative;
}

.testimonial-scroll {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 20px;
    padding: 40px 15px 20px;
    gap: 20px;
}

/* Hide scrollbar but maintain functionality */
.testimonial-scroll::-webkit-scrollbar {
    display: none;
}

.testimonial-scroll {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.mobile-testimonial {
    scroll-snap-align: center;
    flex: 0 0 90%;
    min-width: 280px;
    max-width: 380px;
    margin: 0 auto;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    padding: 30px 20px 25px;
    position: relative;
    border: 1px solid #f0f0f0;
}

.mobile-family-image {
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 3px solid white;
    background: white;
}

.mobile-family-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mobile-testimonial-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.mobile-testimonial-content .testimonial-stars {
    height: 20px;
    margin-bottom: 15px;
}

.mobile-testimonial-content .quote {
    font-style: italic;
    margin-bottom: 15px;
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    position: relative;
}

.mobile-testimonial-content .quote::before {
    content: '"';
    font-size: 36px;
    color: #00a19b;
    opacity: 0.2;
    position: absolute;
    left: -10px;
    top: -18px;
}

.mobile-testimonial-content .author {
    font-weight: 600;
    color: #333;
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    margin-top: auto;
    padding-top: 15px;
    position: relative;
}

.mobile-testimonial-content .author::before {
    content: '';
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* Updated testimonial dots */
.testimonial-dots {
    display: none;
    justify-content: center;
    margin: 15px 0;
}

.testimonial-dots .carousel-dot {
    width: 8px;
    height: 8px;
    background-color: #ccc;
    border-radius: 50%;
    margin: 0 5px;
    transition: background-color 0.3s ease;
}

.testimonial-dots .carousel-dot.active {
    background-color: #00a19b;
}

/* Mobile-specific adjustments */
@media (max-width: 768px) {
    .testimonial-grid {
        display: none; /* Hide grid view on mobile */
    }

    .testimonial-scroll-wrapper {
        display: block; /* Show scrollable carousel on mobile */
    }

    .testimonial-dots {
        display: flex; /* Show dots on mobile */
    }

    .testimonials-container {
        padding: 25px 0 35px; /* Reduced padding on the container for mobile */
    }

    .testimonials h2 {
        margin-bottom: 20px;
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .mobile-testimonial {
        flex: 0 0 85%;
        min-width: 250px;
    }

    .mobile-family-image {
        width: 60px;
        height: 60px;
        top: -30px;
    }
}

/* Ensure dots are clickable and properly styled */
.testimonial-dots .carousel-dot {
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.testimonial-dots .carousel-dot:hover {
    background-color: #999;
}

/* Comparison Table Styles */
.comparison-section {
    padding: 4rem 2.5rem 2.5rem 2.5rem;
    background-color: #f5f5f5;
    margin: 2rem 0;
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.03);
    overflow: visible;
}

.comparison-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #333;
}

.brand-teal {
    color: #00a8a8;
}

.comparison-table-container {
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: auto;
    padding: 0;
    /* No background, no border-radius */
    background: none;
    border-radius: 0;
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: white;
    border-radius: 10px;
    overflow: hidden;
}

/* Table header and cell styles */
.comparison-table th,
.comparison-table td {
    padding: 1.2rem;
    border-bottom: 1px solid #eee;
    position: relative;
}

.comparison-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #333;
    text-align: center;
}

.comparison-table th:first-child {
    text-align: left;
}

.comparison-table .splash-column {
    background-color: rgba(0, 168, 168, 0.05);
    color: #00a8a8;
    text-align: center;
}

.comparison-table td {
    vertical-align: middle;
}

.comparison-table td:not(:first-child) {
    text-align: center;
}

/* Logo styling */
.comparison-logo {
    height: 40px;
    width: auto;
    display: block;
    margin: 0 auto;
}

/* Icon styling */
.comparison-table td i {
    margin-right: 0.5rem;
    font-size: 1rem;
    width: 16px;
    text-align: center;
}

.comparison-table td i.fa-check {
    color: #00a8a8;
}

.comparison-table td i.fa-times {
    color: #dc3545;
}

.comparison-table td i.fa-exclamation-triangle {
    color: #ffc107;
}

/* Apply border radius to corners */
.comparison-table thead tr:first-child th:first-child {
    border-top-left-radius: 12px;
}

.comparison-table thead tr:first-child th:last-child {
    border-top-right-radius: 12px;
}

.comparison-table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 12px;
}

.comparison-table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 12px;
}

/* Remove border from last row */
.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .comparison-section {
        padding: 2rem 0.5rem 2rem 0.5rem;
    }

    .comparison-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    .comparison-logo {
        height: 30px;
    }

    .comparison-table-container {
        overflow-x: visible;
        padding: 0;
    }
    .comparison-table {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        table-layout: fixed;
        font-size: 0.92rem;
    }
    .comparison-table th, .comparison-table td {
        word-break: break-word;
        padding: 0.7rem 0.3rem;
    }
}

@media (max-width: 480px) {
    .comparison-section {
        padding: 1.2rem 0.2rem 1.2rem 0.2rem;
    }

    .comparison-logo {
        height: 25px;
    }
}