        /* Base styles and reset */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background-color: #fafafa;
            color: #333;
            line-height: 1.6;
        }

        /* Main container */
        .spa-gift-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 20px;
        }

        /* Header section */
        .spa-header {
            margin-bottom: 60px;
        }

        .spa-eyebrow {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: #FF9933;
            margin-bottom: 10px;
            font-weight: 500;
        }

        .spa-title {
            font-size: 2.8rem;
            font-weight: 300;
            color: #333;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .spa-title span {
            font-weight: 600;
            color: #FF9933;
        }

        .spa-description {
            font-size: 1.1rem;
            color: #666;
            max-width: 600px;
            margin-bottom: 30px;
            font-weight: 300;
            line-height: 1.8;
        }

        /* Process navigation */
        .spa-process {
            display: flex;
            margin-bottom: 60px;
            border-bottom: 1px solid #eee;
            padding-bottom: 20px;
        }

        .spa-process-step {
            padding: 0 30px 20px 0;
            position: relative;
            margin-right: 30px;
            opacity: 0.5;
            transition: all 0.3s ease;
        }

        .spa-process-step.active {
            opacity: 1;
        }

        .spa-process-step.active::after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 100%;
            height: 3px;
            background-color: #FF9933;
        }

        .spa-step-number {
            font-size: 0.8rem;
            color: #FF9933;
            margin-bottom: 5px;
            font-weight: 600;
        }

        .spa-step-label {
            font-size: 1rem;
            font-weight: 500;
        }

        /* Gift card grid - updated to show all cards at once */
        .spa-gift-grid {
            margin-bottom: 60px;
        }

        .spa-grid-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        /* Media query for responsive grid */
        @media (max-width: 1100px) {
            .spa-grid-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 600px) {
            .spa-grid-container {
                grid-template-columns: 1fr;
            }
        }

        .spa-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            position: relative;
        }

        .spa-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        .spa-card-accent {
            height: 8px;
            background: linear-gradient(90deg, #FF9933, #FFB366);
        }

        .spa-card-content {
            padding: 30px;
        }

        .spa-card-price {
            font-size: 2.5rem;
            font-weight: 300;
            color: #333;
            margin-bottom: 10px;
        }

        .spa-card-title {
            font-size: 1.2rem;
            font-weight: 500;
            margin-bottom: 15px;
            color: #333;
        }

        .spa-card-description {
            font-size: 0.9rem;
            color: #777;
            margin-bottom: 25px;
            line-height: 1.6;
        }

        .spa-card-button {
            background: transparent;
            border: 1px solid #FF9933;
            color: #FF9933;
            padding: 12px 25px;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .spa-card-button:hover {
            background: #FF9933;
            color: white;
        }

        /* Custom amount section */
        .spa-custom-amount {
            background: white;
            border-radius: 10px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            margin-bottom: 60px;
        }

        .spa-custom-title {
            font-size: 1.5rem;
            font-weight: 300;
            color: #333;
            margin-bottom: 30px;
            text-align: center;
        }

        .spa-custom-title span {
            font-weight: 600;
            color: #FF9933;
        }

        .spa-amount-controls {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 30px;
        }

        .spa-amount-minus,
        .spa-amount-plus {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #f5f5f5;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: #999;
            cursor: pointer;
            transition: all 0.3s ease;
            user-select: none;
        }

        .spa-amount-minus:hover,
        .spa-amount-plus:hover {
            background: #FF9933;
            color: white;
        }

        .spa-amount-input {
            width: 150px;
            text-align: center;
            font-size: 2rem;
            font-weight: 300;
            color: #333;
            border: none;
            margin: 0 20px;
            background: transparent;
        }

        .spa-amount-input:focus {
            outline: none;
        }

        .spa-amount-range {
            text-align: center;
            color: #999;
            font-size: 0.9rem;
            margin-bottom: 30px;
        }

        .spa-custom-button {
            background: #FF9933;
            color: white;
            border: none;
            padding: 15px 40px;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            display: block;
            margin: 0 auto;
            box-shadow: 0 5px 15px rgba(255, 153, 51, 0.3);
        }

        .spa-custom-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(255, 153, 51, 0.4);
        }

        /* Benefits section */
        .spa-benefits {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }

        .spa-benefit {
            padding: 30px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .spa-benefit:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        .spa-benefit-icon {
            width: 60px;
            height: 60px;
            background: rgba(255, 153, 51, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .spa-benefit-icon svg {
            width: 30px;
            height: 30px;
            fill: #FF9933;
        }

        .spa-benefit-title {
            font-size: 1.2rem;
            font-weight: 500;
            margin-bottom: 15px;
            color: #333;
        }

        .spa-benefit-text {
            font-size: 0.9rem;
            color: #777;
            line-height: 1.6;
        }

        /* Footer section */
        .spa-footer {
            text-align: center;
            padding: 40px 0;
            border-top: 1px solid #eee;
        }

        .spa-footer-text {
            font-size: 1rem;
            color: #666;
            margin-bottom: 20px;
        }

        .spa-footer-link {
            color: #FF9933;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

        .spa-footer-link::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 100%;
            height: 1px;
            background: #FF9933;
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.3s ease;
        }

        .spa-footer-link:hover::after {
            transform: scaleX(1);
            transform-origin: left;
        }
  