
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
}

:root {
    --primary: #ffa900;
    --primary-dark: #e89800;
    --primary-light: #ffbe41;
    --secondary: #fdfbec;
    --text: #333333;
    --text-light: #666666;
    --bg-light: #fdfbec;
    --white: #ffffff;
    --gray-light: #f5f5f5;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.main-container {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    overflow-x: hidden;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #fff8e6 0%, #fff2d1 100%);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero:before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 169, 0, 0.05);
    top: -150px;
    right: -100px;
}

.hero:after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 169, 0, 0.05);
    bottom: -100px;
    left: -50px;
}

.hero-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
}

.hero-main-item {
    flex: 1 1 500px;
}

.content-section {
    opacity: 0;
    transform: translateY(20px);
}

.image-section {
    opacity: 0;
    transform: translateX(20px);
    padding-left: 30px; /* Updated to 30px as requested */
}

.hero-first-line {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.content-section{
    font-family: 'Noto Sans Thai', sans-serif;
}

.text-animation {
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.hero-sub-line {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: var(--text-light);
}

.hero-des-line {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.hero-des-line:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 1s ease;
}

.hero-start-btn {
    display: inline-block;
    background-color: var(--primary);
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    padding: 15px 30px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 169, 0, 0.3);
    margin-bottom: 15px;
    position: relative;
    overflow: hidden;
}

.hero-start-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 169, 0, 0.4);
}

.hero-start-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transition: all 0.6s ease;
}

.hero-start-btn:hover:before {
    left: 100%;
}

.hero-sub-text-des {
    font-size: 14px;
    color: var(--text-light);
}

.bordered {
    border-bottom: 2px dashed var(--primary);
    padding-bottom: 2px;
}

/* Hero Logo Section */
.hero-logo {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    opacity: 0;
}

.hero-logo-item {
    flex: 0 1 150px;
    text-align: center;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.hero-logo-item:hover {
    filter: grayscale(0);
    opacity: 1;
}

.hero-logo-item img {
    max-width: 100%;
    height: auto;
    max-height: 40px;
}

/* Triple dashboard image layout */
.hero-image-container {
    width: 100%;
    max-width: 700px;
    height: 450px;
    position: relative;
    margin: 0 auto;
    perspective: 1000px;
}

.hero-images-group {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dashboard-image {
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.5s ease;
    transform-style: preserve-3d;
    position: absolute;
    opacity: 0;
    transform: translateY(20px);
}

.dashboard-left {
    width: 200px;
    height: auto;
    left: 10px; /* Moved closer to center */
    top: 40px;
    z-index: 1;
    transform: rotate(-5deg) translateX(-20px); /* Adjusted positioning */
}

.dashboard-center {
    width: 200px;
    height: auto;
    z-index: 3;
    transform: translate(-100px, -195px) !important;
}

.dashboard-right {
    width: 200px;
    height: auto;
    right: 10px; /* Moved closer to center */
    top: 40px;
    z-index: 2;
    transform: rotate(5deg) translateX(20px); /* Adjusted positioning */
}

/* Feature elements styling */
.feature-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}

.feature-element {
    position: absolute;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    box-shadow: rgba(100, 100, 111, 1) 0px 7px 29px 0px;
    border-radius: 100%;
    height: 30px;
}

.element-content {
    background-color: rgba(255, 255, 255, 0.95);
    border: 2px solid var(--primary);
    border-radius: 8px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 15;
}

.element-content i {
    color: var(--primary);
    font-size: 16px;
    margin-right: 8px;
}

.element-content span {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    white-space: nowrap;
}

/* Positions for each element */
.element-1 {
    top: 10%;
    right: 15%;
}

.element-2 {
    top: 35%;
    left: 5%;
}

.element-3 {
    bottom: 25%;
    left: 10%;
}

.element-4 {
    top: 15%;
    left: 18%;
}

.element-5 {
    bottom: 15%;
    right: 10%;
}

.element-6 {
    top: 50%;
    right: 8%;
}

/* Why JoinJoy Section */
.why-joinjoy {
    padding: 80px 0;
    background-color: var(--secondary);
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: var(--primary);
    position: relative;
    opacity: 0;
    transform: translateY(20px);
}

.section-title:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: var(--primary);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    margin-bottom: 20px;
}

.feature-icon img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    padding: 15px;
    background-color: rgba(255, 169, 0, 0.1);
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary);
}

.feature-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-light);
}

/* Center Text Section */
.center-text {
    padding: 80px 0;
    background-color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.center-content {
    position: relative;
    z-index: 10;
}

.center-text__big {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.center-text__big .inline-icon {
    width: 40px;
    height: 40px;
    vertical-align: middle;
    margin: 0 5px;
}

.center-text__small {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-light);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
}

.center-text .orange {
    color: var(--primary);
    font-weight: 600;
}

.center-text .gradient {
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

.float-element {
    position: absolute;
    font-size: 30px;
    opacity: 0.5;
    animation: float 8s ease-in-out infinite;
}

.star-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.badge-1 {
    top: 60%;
    left: 20%;
    animation-delay: 1s;
}

.coin-1 {
    top: 30%;
    right: 15%;
    animation-delay: 2s;
}

.star-2 {
    top: 70%;
    right: 25%;
    animation-delay: 3s;
}

.badge-2 {
    top: 10%;
    right: 10%;
    animation-delay: 4s;
}

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

/* Features Showcase Section */
.features-showcase {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.features-title {
    margin-bottom: 70px;
}

.advant__item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 100px;
    background-color: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow);
    gap: 20px;
}

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

.advant__item .content-col, 
.advant__item .image-col {
    flex: 1 1 450px;
    position: relative;
}

/* Fix for features section left/right positioning */
.advant__item .content-col {
    order: 2;
}

.advant__item .image-col {
    order: 1;
}

.advant__item.reverse .content-col {
    order: 2;
}

.advant__item.reverse .image-col {
    order: 1;
}

.ttl h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--primary);
}

.advant__item ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.advant__item ul li {
    margin-bottom: 15px;
    padding-left: 35px;
    position: relative;
    font-size: 16px;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
}

.check-icon {
    color: var(--primary);
    margin-right: 10px;
    font-size: 18px;
    position: absolute;
    left: 0;
    top: 2px;
}

.button.bordered {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 50px;
    padding: 10px 25px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.button.bordered:hover {
    background-color: var(--primary);
    color: var(--white);
}

.button.bordered img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.button.bordered .btn-text {
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

.button.bordered .btn-text span {
    display: block;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.button.bordered .btn-text span:nth-child(1) {
    opacity: 1;
    visibility: visible;
}

.button.bordered .btn-text span:nth-child(2) {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
}

.button.bordered:hover .btn-text span:nth-child(1) {
    opacity: 0;
    visibility: hidden;
}

.button.bordered:hover .btn-text span:nth-child(2) {
    opacity: 1;
    visibility: visible;
}

.advant__item-img {
    position: relative;
    width: 100%;
    height: 400px;
}

.layer {
    position: absolute;
    box-shadow: var(--shadow);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.5s ease;
}

.layer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.layer1 {
    width: 70%;
    height: 250px;
    top: 0;
    left: 0;
    z-index: 1;
}

.layer2 {
    width: 60%;
    height: 200px;
    top: 50px;
    right: 0;
    z-index: 2;
}

.layer3 {
    width: 50%;
    height: 150px;
    bottom: 0;
    left: 25%;
    z-index: 3;
}

.matching-line {
    position: absolute;
    top: -20px;
    right: -30px;
}

.matching-line-path {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: dash 2s ease-in-out forwards;
    animation-delay: 1s;
}

.mobile-only-image {
    display: none;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

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

.desktop-only {
    display: block;
}

@keyframes dash {
    to {
        stroke-dashoffset: 0;
    }
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background-color: var(--white);
}

.pricing-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 50px;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
}

.toggle-option {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.toggle-option.active {
    color: var(--primary);
    font-weight: 600;
}

.toggle-switch {
    width: 50px;
    height: 26px;
    background-color: #e0e0e0;
    border-radius: 13px;
    margin: 0 15px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.toggle-switch.active {
    background-color: var(--primary);
}

.toggle-knob {
    width: 22px;
    height: 22px;
    background-color: var(--white);
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 2px;
    transition: all 0.3s ease;
}

.toggle-switch.active .toggle-knob {
    left: 26px;
}

.save-badge {
    font-size: 12px;
    font-weight: 600;
    color: white;
    background-color: #4CAF50;
    padding: 2px 6px;
    border-radius: 10px;
    margin-left: 8px;
}

.pricing-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.pricing-card {
    flex: 1 1 300px;
    max-width: 350px;
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #eaeaea;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.pricing-card.recommended {
    border: 2px solid var(--primary);
    transform: scale(1.05);
}

.pricing-card.recommended:hover {
    transform: scale(1.05) translateY(-10px);
}

.best-seller {
    position: absolute;
    top: -12px;
    right: -12px;
    background-color: var(--primary);
    color: white;
    font-size: 14px;
    font-weight: 600;
    padding: 5px 15px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(255, 169, 0, 0.3);
}

.pricing-card-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eaeaea;
}

.pricing-card-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.price-container {
    position: relative;
    height: 80px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    flex-wrap: wrap;
    transition: all 0.3s ease;
}

.price.hidden {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.price .currency {
    font-size: 20px;
    font-weight: 600;
}

.price .amount {
    font-size: 36px;
    font-weight: 700;
    margin: 0 3px;
}

.price .period {
    font-size: 16px;
    color: var(--text-light);
}

.original-price {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 14px;
    margin-top: 5px;
    display: inline-block;
    margin-left: 4px;
}

.discount-badge {
    position: absolute;
    top: -20px;
    right: -15px;
    background-color: #4CAF50;
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
    transform: rotate(5deg);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1) rotate(5deg);
    }
    50% {
        transform: scale(1.1) rotate(5deg);
    }
    100% {
        transform: scale(1) rotate(5deg);
    }
}

.pricing-card-body {
    margin-bottom: 30px;
}

.pricing-card-body ul {
    list-style: none;
    padding: 0;
}

.pricing-card-body li {
    padding-left: 25px;
    margin-bottom: 15px;
    position: relative;
    font-size: 15px;
}

.pricing-card-footer {
    text-align: center;
}

.pricing-btn {
    display: inline-block;
    background-color: var(--primary);
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pricing-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(255, 169, 0, 0.3);
}

.custom-tier {
    text-align: center;
    margin-top: 30px;
}

.custom-tier-btn {
    display: inline-flex;
    align-items: center;
    background-color: var(--white);
    color: var(--primary);
    font-size: 16px;
    font-weight: 600;
    padding: 15px 30px;
    border-radius: 50px;
    border: 2px solid var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.custom-tier-btn:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(255, 169, 0, 0.3);
}

.custom-icon {
    margin-right: 10px;
    font-size: 18px;
}

.custom-tier-text {
    font-size: 14px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Power Up Section */
.powerup-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff8e6 0%, #fff2d1 100%);
}

.powerup-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 50px;
}

.powerup-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.powerup-card {
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    padding: 30px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: visible; /* Changed from hidden to visible */
}

.powerup-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.powerup-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: var(--primary);
}

.powerup-recommended, 
.powerup-best-seller {
    position: absolute;
    top: -12px;
    right: -12px;
    font-size: 14px;
    font-weight: 600;
    padding: 5px 15px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 10; /* Increased z-index */
}

.powerup-recommended {
    background-color: #4CAF50;
    color: white;
}

.powerup-best-seller {
    background-color: var(--primary);
    color: white;
}

.powerup-icon {
    margin-bottom: 20px;
}

.powerup-icon img {
    width: 60px;
    height: 60px;
}

.powerup-content {
    flex-grow: 1;
}

.powerup-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary);
}

.powerup-content p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 20px;
}

.powerup-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 20px;
}

.powerup-price span {
    font-size: 14px;
    font-weight: normal;
    color: var(--text-light);
}

.powerup-action {
    margin-top: auto;
}

.powerup-btn {
    display: inline-block;
    background-color: var(--primary);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.powerup-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(255, 169, 0, 0.3);
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff8e6 0%, #fff2d1 100%);
}

.testimonials-slider {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.testimonials-wrapper {
    overflow: hidden;
    padding: 20px 0;
    cursor: grab;
}

.testimonials-wrapper:active {
    cursor: grabbing;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 30px);
    margin: 0 15px;
    background-color: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    min-width: 280px;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.testimonial-stars {
    color: var(--primary);
    font-size: 20px;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    margin-bottom: 20px;
    min-height: 100px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.testimonial-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
}

.testimonial-position {
    font-size: 14px;
    color: var(--text-light);
}

.testimonial-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.prev,
.next {
    background-color: var(--white);
    color: var(--primary);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.prev:hover,
.next:hover {
    background-color: var(--primary);
    color: var(--white);
}

.testimonial-dots {
    display: flex;
    gap: 8px;
    margin: 0 20px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #e0e0e0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background-color: var(--primary);
    transform: scale(1.3);
}

/* Blog Section */
.blog-section {
    padding: 80px 0;
    background-color: var(--white);
}

.blog-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.blog-card {
    flex: 1 1 300px;
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 20px;
}

.blog-date {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.blog-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text);
    transition: all 0.3s ease;
}

.blog-card:hover .blog-title {
    color: var(--primary);
}

.blog-excerpt {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 15px;
}

.blog-read-more {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.blog-read-more i {
    margin-left: 5px;
    transition: all 0.3s ease;
}

.blog-read-more:hover {
    color: var(--primary-dark);
}

.blog-read-more:hover i {
    transform: translateX(5px);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: var(--secondary);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(255, 169, 0, 0.05);
}

.faq-question h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    color: var(--text);
}

.faq-toggle {
    color: var(--primary);
    font-size: 18px;
    transition: all 0.3s ease;
}

.faq-item.active .faq-toggle i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 500px;
    opacity: 1;
}

.faq-answer p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
}

/* Add this to your CSS file or inside the style tag in your header */

/* Mobile Section Navigation */
.mobile-section-nav-wrapper {
    position: fixed;
    bottom: 45px; /* Position above the Try it now button */
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 9997;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    border-top: 1px solid rgba(255, 169, 0, 0.2);
  }
  
  .mobile-section-nav-wrapper.visible {
    transform: translateY(0);
  }
  
  .mobile-section-nav {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  .mobile-section-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    white-space: nowrap;
  }
  
  .mobile-section-nav li {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    margin: 0 2px;
    border-radius: 20px;
  }
  
  .mobile-section-nav li:after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    background-color: var(--primary);
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    transition: width 0.3s ease;
    border-radius: 2px;
  }
  
  .mobile-section-nav li.active {
    color: var(--primary);
    font-weight: 600;
    background-color: rgba(255, 169, 0, 0.1);
  }
  
  .mobile-section-nav li.active:after {
    width: 30px;
  }
  
  .mobile-section-nav li:hover {
    color: var(--primary);
  }
  
  /* Hide scrollbar for Chrome, Safari and Opera */
  .mobile-section-nav::-webkit-scrollbar {
    display: none;
  }
  
  /* Hide scrollbar for IE, Edge and Firefox */
  .mobile-section-nav {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
  }
  
  /* Position adjustments for mobile footer with navigation */
  @media (max-width: 768px) {
    /* Only on mobile */
    .mobile-footer {
      padding-bottom: 15px;
    }
    .mobile-footer.with-nav {
      border-top: 1px solid rgba(255, 169, 0, 0.2);
    }
  }
  
  @media (min-width: 769px) {
    .mobile-section-nav-wrapper {
      display: none;
    }
  }

/* Media Queries */
@media screen and (max-width: 991px) {
    .hero-first-line {
        font-size: 36px;
    }
    
    .center-text__big {
        font-size: 28px;
    }
    
    .testimonial-card {
        flex: 0 0 calc(50% - 30px);
    }
    
    .powerup-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .hero-image-container {
        height: 380px;
    }
}

@media screen and (max-width: 768px) {
    .hero-first-line {
        font-size: 30px;
    }
    
    .hero-des-line {
        font-size: 20px;
    }
    
    .hero-box {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .hero-main-item {
        flex: 1 1 100%;
    }
    
    .image-section {
        order: -1; /* Show image first on mobile */
        padding-left: 0; /* Reset padding for mobile */
    }
    
    .content-section {
        margin-top: 60px; /* Added margin-top as requested */
    }
    
    .hero-logo {
        justify-content: center;
        margin-top: 20px;
    }
    
    .hero-logo-item {
        flex: 0 1 120px;
    }
    
    .center-text {
        padding: 60px 0;
    }
    
    .center-text__big {
        font-size: 24px;
    }
    
    .center-text__small {
        font-size: 16px;
    }
    
    .floating-elements {
        opacity: 0.1;
    }
    
    .advant__item,
    .advant__item.reverse {
        flex-direction: column;
        margin-bottom: 40px;
        padding: 25px;
    }
    
    .advant__item .content-col,
    .advant__item .image-col {
        width: 100%;
        flex: 1 1 100%;
    }
    
    /* Ensure proper ordering on mobile */
    .advant__item .content-col,
    .advant__item.reverse .content-col {
        order: 2;
    }
    
    .advant__item .image-col,
    .advant__item.reverse .image-col {
        order: 1;
    }
    
    .desktop-only {
        display: none;
    }
    
    .mobile-only-image {
        display: block;
        margin-bottom: 30px;
    }
    
    .advant__item-img {
        height: auto;
        margin-bottom: 20px;
    }
    
    .testimonial-card {
        flex: 0 0 calc(100% - 30px);
        min-width: 250px;
    }
    
    .pricing-card.recommended {
        transform: scale(1);
    }
    
    .pricing-card.recommended:hover {
        transform: translateY(-10px);
    }
    
    /* Ensure feature elements are visible on mobile */
    .hero-image-container {
        height: 300px;
    }
    
    .dashboard-left {
        width: 170px; /* Updated to 170px for mobile as requested */
        transform: rotate(-5deg) translateX(-15px);
    }
    
    .dashboard-center {
        width: 170px; /* Updated to 170px for mobile as requested */
        transform: translate(-90px, -185px) !important;
    }
    
    .dashboard-right {
        width: 170px; /* Updated to 170px for mobile as requested */
        transform: rotate(5deg) translateX(15px);
    }
    
    /* Feature elements display fixes for mobile */
    .feature-element {
        display: block !important; /* Force display */
        opacity: 1 !important; /* Force visibility */
        transform: scale(0.8);
        z-index: 50; /* Ensure high z-index to prevent being hidden */
    }
    
    .element-1, .element-3, .element-5 {
        left: 0 !important;
        right: auto !important;
    }
    
    .element-2, .element-4, .element-6 {
        right: 0 !important;
        left: auto !important;
    }
    
    .element-1 {
        top: 5% !important;
    }
    
    .element-2 {
        top: 20% !important;
    }
    
    .element-3 {
        top: 35% !important;
    }
    
    .element-4 {
        top: 50% !important;
    }
    
    .element-5 {
        top: 65% !important;
    }
    
    .element-6 {
        top: 80% !important;
    }
}

@media screen and (max-width: 576px) {
    .hero-first-line {
        font-size: 26px;
    }
    
    .hero-sub-line {
        font-size: 16px;
    }
    
    .center-text__big {
        font-size: 22px;
    }
    
    .center-text__big .inline-icon {
        width: 24px;
        height: 24px;
    }
    
    .center-text__small {
        font-size: 14px;
    }
    
    .pricing-card {
        flex: 1 1 250px;
        padding: 20px;
    }
    
    .advant__item {
        padding: 20px;
    }
    
    .ttl h2 {
        font-size: 24px;
    }
    
    .powerup-card {
        padding: 20px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .testimonial-text {
        min-height: auto;
    }
    
    /* Smaller feature elements on very small screens */
    .element-content {
        padding: 6px 10px;
    }
    
    .element-content i {
        font-size: 14px;
    }
    
    .element-content span {
        font-size: 12px;
    }
}


/* ---------------------- change log zone ----------------------*/

/* JoinJoy Changelog Custom Variables */
.jj-changelog {
    --jj-primary: #ffa900;
    --jj-primary-light: rgba(255, 169, 0, 0.3);
    --jj-primary-dark: #f59e0b;
    --jj-secondary: #ffa900;
    --jj-text-dark: #1a1a2e;
    --jj-text-light: #4a4a6a;
    --jj-text-muted: #7a7a9a;
    --jj-bg-light: #f8f9ff;
    --jj-bg-white: #ffffff;
    --jj-border-light: #e6e8f0;
    --jj-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --jj-shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --jj-radius-sm: 6px;
    --jj-radius-md: 12px;
    --jj-radius-lg: 24px;
    --jj-transition: all 0.3s ease;
    --jj-spacing-xs: 4px;
    --jj-spacing-sm: 8px;
    --jj-spacing-md: 16px;
    --jj-spacing-lg: 24px;
    --jj-spacing-xl: 32px;
    --jj-spacing-xxl: 48px;
    
    /* Category colors */
    --jj-feature: #5460fe;
    --jj-improvement: #24d5d8;
    --jj-bugfix: #fc5758;
    
    /* Base styles */
    font-family: 'Prompt', sans-serif;
    color: var(--jj-text-dark);
    width: 100%;
    padding-bottom: var(--jj-spacing-xxl);
    line-height: 1.6;
}

.jj-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--jj-spacing-lg);
}

/* Changelog Header */
.jj-changelog__header {
    padding: var(--jj-spacing-xxl) 0;
    background: linear-gradient(135deg, var(--jj-primary), var(--jj-primary-light));
    color: var(--jj-bg-white);
    position: relative;
    overflow: hidden;
    margin-bottom: var(--jj-spacing-xl);
}

.jj-changelog__header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 40 40"><circle cx="20" cy="20" r="1.5" fill="rgba(255, 255, 255, 0.2)"/></svg>');
    opacity: 0.5;
}

.jj-changelog__title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: var(--jj-spacing-sm);
    position: relative;
}

.jj-changelog__subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.9;
    max-width: 600px;
}

/* Filter Buttons */
.jj-changelog__filter {
    display: flex;
    flex-wrap: wrap;
    gap: var(--jj-spacing-md);
    margin: var(--jj-spacing-xl) 0;
}

.jj-filter-btn {
    background: var(--jj-bg-white);
    border: 1px solid var(--jj-border-light);
    padding: var(--jj-spacing-sm) var(--jj-spacing-lg);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--jj-text-light);
    cursor: pointer;
    transition: var(--jj-transition);
    box-shadow: var(--jj-shadow-sm);
}

.jj-filter-btn:hover {
    border-color: var(--jj-primary-light);
    color: var(--jj-primary);
    transform: translateY(-2px);
    box-shadow: var(--jj-shadow-md);
}

.jj-filter-btn.jj-active {
    background: var(--jj-primary);
    color: white;
    border-color: var(--jj-primary);
}

/* Timeline */
.jj-changelog__timeline {
    position: relative;
    padding-top: var(--jj-spacing-xl);
}

.jj-changelog__timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 140px;
    width: 2px;
    background: linear-gradient(to bottom, 
        var(--jj-primary-light) 0%, 
        var(--jj-secondary) 100%);
    opacity: 0.3;
}

/* Timeline items */
.jj-changelog__item {
    display: flex;
    margin-bottom: var(--jj-spacing-xl);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.jj-changelog__item.jj-visible {
    opacity: 1;
    transform: translateY(0);
}

.jj-changelog__item::before {
    content: '';
    position: absolute;
    left: 140px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--jj-primary);
    transform: translateX(-7px);
    z-index: 1;
    border: 3px solid var(--jj-bg-light);
    box-shadow: 0 0 0 2px rgba(84, 96, 254, 0.3);
}

.jj-changelog__version {
    width: 220px;
    flex-shrink: 0;
    padding-right: var(--jj-spacing-xl);
    position: relative;
}

.jj-version-tag {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--jj-primary);
    display: block;
    margin-bottom: var(--jj-spacing-xs);
}

.jj-version-date {
    font-size: 0.9rem;
    color: var(--jj-text-muted);
    display: block;
}

.jj-version-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    background: var(--jj-primary);
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    margin-top: var(--jj-spacing-xs);
    animation: jj-pulse 2s infinite;
}

.jj-version-badge--milestone {
    background: #FFB300;
}

.jj-version-badge--first {
    background: #00BFA5;
}

@keyframes jj-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(84, 96, 254, 0.4);
    }
    70% {
        box-shadow: 0 0 0 6px rgba(84, 96, 254, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(84, 96, 254, 0);
    }
}

.jj-changelog__content {
    flex-grow: 1;
    background: var(--jj-bg-white);
    border-radius: var(--jj-radius-md);
    box-shadow: var(--jj-shadow-md);
    padding: var(--jj-spacing-lg);
    border-left: 3px solid var(--jj-primary);
    transition: var(--jj-transition);
}

.jj-changelog__item:hover .jj-changelog__content {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Only the first 5 items are initially visible */
.jj-changelog__item:nth-child(n+6) {
    display: none;
}

/* Section content */
.jj-changelog__section {
    margin-bottom: var(--jj-spacing-lg);
}

.jj-changelog__section:last-child {
    margin-bottom: 0;
}

.jj-changelog__section h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--jj-text-dark);
    margin-bottom: var(--jj-spacing-md);
    display: flex;
    align-items: center;
}

.jj-changelog__section h3 i {
    margin-right: var(--jj-spacing-sm);
    color: var(--jj-primary);
}

.jj-changelog__section h3 i.fa-bug {
    color: var(--jj-bugfix);
}

.jj-changelog__section p {
    margin-bottom: var(--jj-spacing-sm);
    color: var(--jj-text-light);
}

.jj-changelog__section ul {
    list-style: none;
    padding-left: var(--jj-spacing-lg);
}

.jj-changelog__section li {
    position: relative;
    margin-bottom: var(--jj-spacing-sm);
    color: var(--jj-text-light);
}

.jj-changelog__section li::before {
    content: '';
    position: absolute;
    left: -18px;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--jj-primary-light);
}

/* Load more button */
.jj-changelog__load-more {
    text-align: center;
    margin: var(--jj-spacing-xl) 0 var(--jj-spacing-xxl);
}

#jj-load-more {
    background: var(--jj-bg-white);
    border: 1px solid var(--jj-border-light);
    padding: var(--jj-spacing-md) var(--jj-spacing-xl);
    border-radius: var(--jj-radius-md);
    font-size: 1rem;
    font-weight: 500;
    color: var(--jj-text-light);
    cursor: pointer;
    transition: var(--jj-transition);
    box-shadow: var(--jj-shadow-sm);
    display: inline-flex;
    align-items: center;
}

#jj-load-more:hover {
    border-color: var(--jj-primary-light);
    color: var(--jj-primary);
    transform: translateY(-2px);
    box-shadow: var(--jj-shadow-md);
}

#jj-load-more i {
    margin-left: var(--jj-spacing-sm);
    transition: var(--jj-transition);
}

#jj-load-more:hover i {
    transform: translateY(2px);
}

#jj-load-more.jj-hidden {
    display: none;
}

/* Responsive styles */
@media (max-width: 960px) {
    .jj-changelog__title {
        font-size: 2.5rem;
    }
    
    .jj-changelog__timeline::before {
        left: 100px;
    }
    
    .jj-changelog__item::before {
        left: 100px;
    }
    
    .jj-changelog__version {
        width: 180px;
    }
}

@media (max-width: 768px) {
    .jj-changelog__header {
        padding: var(--jj-spacing-xl) 0;
    }
    
    .jj-changelog__title {
        font-size: 2rem;
    }
    
    .jj-changelog__item {
        flex-direction: column;
        position: relative;
        padding-top: 70px;
    }
    
    .jj-changelog__timeline::before {
        left: 50%;
        transform: translateX(-50%);
        z-index: 0;
        width: 3px;
    }
    
    .jj-changelog__item::before {
        left: 50%;
        top: 40px;
        transform: translateX(-50%);
        width: 18px;
        height: 18px;
        z-index: 1;
    }
    
    .jj-changelog__version {
        width: 100%;
        margin-bottom: var(--jj-spacing-md);
        padding-left: 0;
        padding-right: 0;
        text-align: center;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
    }
    
    .jj-version-tag {
        display: inline-block;
        margin-right: var(--jj-spacing-sm);
        color: var(--jj-primary-dark);
        font-size: 1.2rem;
    }
    
    .jj-version-date {
        display: inline-block;
        background: white;
        border-radius: 10px;
        border: 2px solid #f5ebdc;
        padding: 0 10px;
    }
    
    .jj-version-badge {
        position: absolute;
        top: 35px;
        left: 50%;
        transform: translateX(-50%);
        padding: 3px 12px;
        font-size: 0.65rem;
        z-index: 2;
    }
    
    .jj-changelog__content {
        width: 100%;
        margin-top: var(--jj-spacing-sm);
        border-left: none;
        border-top: 3px solid var(--jj-primary);
    }
}

@media (max-width: 480px) {
    .jj-changelog__title {
        font-size: 1.8rem;
    }
    
    .jj-changelog__subtitle {
        font-size: 1rem;
    }
    
    .jj-filter-btn {
        font-size: 0.8rem;
        padding: var(--jj-spacing-xs) var(--jj-spacing-md);
    }
    
    .jj-changelog__filter {
        justify-content: center;
    }
    
    .jj-changelog__section h3 {
        font-size: 1rem;
    }
    
    .jj-changelog__section li {
        font-size: 0.9rem;
    }
    
    .jj-changelog__item {
        padding-top: 60px;
    }
    
    .jj-version-tag {
        font-size: 1.1rem;
    }
    
    /* Ensure the timeline point doesn't get too small on tiny screens */
    .jj-changelog__item::before {
        width: 14px;
        height: 14px;
    }
}
/* ---------------------- change log zone -----------*/


/* ---------------------- price zone -----------*/
/* ปรับขนาดความสูงของ price-container เพื่อรองรับข้อความเพิ่มเติม */
.price-container {
    position: relative;
    height: 120px; /* เพิ่มความสูงจาก 80px เป็น 120px */
}

/* สไตล์สำหรับผลรวมราคารายปี */
.yearly-total {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    margin-top: 8px;
    background-color: rgba(255, 169, 0, 0.08);
    padding: 5px 17px;
    border-radius: 20px;
    display: inline-block;
    box-shadow: 0 2px 4px rgba(255, 169, 0, 0.1);
    animation: gentle-pulse 2s infinite;
}

/* สไตล์สำหรับส่วนลดรายปี */
.yearly-savings {
    font-size: 15px;
    font-weight: 600;
    color: #4CAF50;
    margin-top: 6px;
    padding: 3px 10px;
    border-radius: 4px;
    display: inline-block;
    border: 1px dashed #4CAF50;
    background-color: rgba(76, 175, 80, 0.05);
}

/* อนิเมชั่นสำหรับการเน้นราคารวมรายปี */
@keyframes gentle-pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.03);
    }
    100% {
        transform: scale(1);
    }
}

/* ปรับปรุงแสดงผลบนอุปกรณ์มือถือ */
@media screen and (max-width: 576px) {
    .price-container {
        height: 140px; /* เพิ่มความสูงบนมือถือเพื่อให้แสดงผลได้ถูกต้อง */
    }
    
    .yearly-total, .yearly-savings {
        font-size: 14px;
        margin-top: 5px;
    }
    
    .yearly-total {
        padding: 4px 10px;
    }
    
    .yearly-savings {
        padding: 2px 8px;
    }
}

/* ปรับปรุงการแสดงผลสำหรับ toggle switch */
.toggle-switch {
    cursor: pointer;
    transition: all 0.4s ease;
}

.toggle-switch.active {
    background-color: var(--primary);
}

.toggle-switch.active .toggle-knob {
    transform: translateX(0);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* เพิ่มเอฟเฟกต์การเปลี่ยนแปลงเมื่อเปลี่ยนโหมดราคา */
.price.hidden {
    transform: translateY(-10px);
    transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
}

.price {
    transform: translateY(0);
    transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
}
/* ---------------------- price zone -----------*/

