
        /* Specijalni stilovi samo za ovu stranicu */
        
        .massage-page-section {
            padding: 120px 0; 
            background: linear-gradient(to bottom, #f4f1ea, #fff, #f4f1ea); 
        }

        .massage-container {
            display: flex;
            align-items: center; 
            justify-content: center;
            gap: 60px;
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .massage-images {
            flex: 1;
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
            position: relative;
        }

        .massage-img {
            width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 15px 40px rgba(184, 150, 67, 0.15); 
            transition: transform 0.4s ease;
            object-fit: cover;
        }
        
        .massage-img:hover {
            transform: translateY(-5px); 
        }

        .massage-img:first-child {
            border-bottom: 4px solid #B89643; 
        }

        .massage-text-col {
            flex: 1;
            padding: 40px;
            background: #fff; 
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.03); 
            border: 1px solid rgba(184, 150, 67, 0.1);
        }

        .massage-title {
            font-family: 'Marcellus', serif;
            font-size: 3.5rem; 
            color: #1a1a1a;
            line-height: 1.1;
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 20px;
        }

        .massage-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 3px;
            background: #B89643; 
        }

        .massage-content p {
            font-family: 'Manrope', sans-serif;
            color: #555;
            font-size: 1.05rem;
            line-height: 1.8;
            margin-bottom: 20px;
            text-align: justify; 
        }

        .massage-highlight {
            color: #B89643;
            font-weight: 700;
        }
        
        /* NOVI STIL ZA PODNASLOV EFEKATA (SUPTILAN ALI PRIMETAN) */
        .massage-subheader {
            display: block;
            font-family: 'Oswald', sans-serif;
            color: #444;
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
            font-size: 0.9rem;
            margin-bottom: 8px;
            border-left: 3px solid #B89643;
            padding-left: 10px;
        }

        .massage-btn-right {
            display: inline-block;
            margin-top: 20px;
            padding: 15px 40px;
            background: #B89643;
            color: #fff;
            font-family: 'Oswald', sans-serif;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-decoration: none;
            border-radius: 4px;
            transition: all 0.3s;
            box-shadow: 0 10px 20px rgba(184, 150, 67, 0.3);
            border: none;
            cursor: pointer;
            width: auto;
        }

        .massage-btn-right:hover {
            background: #1a1a1a;
            color: #fff;
            transform: translateY(-2px);
        }

        /* --- STIL ZA LOGIN (Kao na Indexu) --- */
        .nav-login-link {
            color: #B89643 !important; 
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-right: 15px;
            font-family: 'Manrope', sans-serif;
            font-size: 0.9rem;
            transition: 0.3s;
        }
        .nav-login-link:hover {
            color: #1a1a1a !important; 
        }
        
        /* --- BOOKING MODAL STYLES (PREMIUM REDESIGN) --- */
        .book-modal-overlay {
            position: fixed; top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(244, 241, 234, 0.95);
            backdrop-filter: blur(8px);
            z-index: 10000;
            display: none;
            justify-content: center;
            align-items: center;
            animation: fadeIn 0.3s ease;
        }
        
        .book-modal-box {
            background: #fff;
            width: 90%;
            max-width: 500px;
            border-radius: 20px;
            box-shadow: 0 25px 80px rgba(184, 150, 67, 0.15);
            border: 1px solid rgba(184, 150, 67, 0.2);
            padding: 35px;
            position: relative;
            max-height: 90vh;
            overflow-y: auto;
        }
        
        .book-close {
            position: absolute; top: 20px; right: 20px;
            background: none; border: none; font-size: 1.5rem; color: #888;
            cursor: pointer; transition: 0.2s;
        }
        .book-close:hover { color: #B89643; }
        
        .book-step { display: none; animation: slideUp 0.4s ease; }
        .book-step.active { display: block; }
        
        .book-title {
            font-family: 'Marcellus', serif;
            color: #1a1a1a;
            font-size: 1.8rem;
            margin-bottom: 10px;
            text-align: center;
        }
        
        .book-subtitle {
            text-align: center;
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 25px;
        }
        
        /* KATEGORIJE (STEP 1) */
        .category-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-bottom: 20px;
        }
        
        .cat-btn {
            background: #fff;
            border: 1px solid #e0e0e0;
            padding: 20px 10px;
            border-radius: 12px;
            text-align: center;
            cursor: pointer;
            transition: 0.3s;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.03);
        }
        
        .cat-btn:hover { border-color: #B89643; transform: translateY(-3px); box-shadow: 0 10px 25px rgba(184, 150, 67, 0.15); }
        
        .cat-icon { font-size: 1.8rem; }
        .cat-label { font-family: 'Oswald', sans-serif; font-size: 0.9rem; letter-spacing: 1px; color: #333; text-transform: uppercase; }

        /* TRAJANJE (STEP 2 - SUBMENU) */
        .duration-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .duration-btn {
            background: #fcfcfc;
            border: 1px solid #eee;
            padding: 15px;
            border-radius: 8px;
            text-align: left;
            cursor: pointer;
            transition: 0.2s;
            font-family: 'Manrope', sans-serif;
            color: #555;
            display: flex;
            justify-content: space-between;
        }
        .duration-btn:hover { border-color: #B89643; color: #B89643; background: #fff; }

        /* VREME (STEP 3 - BARBER STYLE) */
        .date-input {
            width: 100%;
            padding: 15px;
            border: 1px solid #ddd;
            border-radius: 10px;
            font-family: 'Manrope', sans-serif;
            font-size: 1rem;
            margin-bottom: 20px;
            outline: none;
            background: #fff;
            color: #333;
        }
        
        .time-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr); /* 4 u redu */
            gap: 10px;
            margin-bottom: 20px;
        }
        
        .time-slot {
            background: #f4f4f4;
            color: #333;
            border: 1px solid transparent;
            border-radius: 8px;
            padding: 12px 5px;
            text-align: center;
            font-family: 'Oswald', sans-serif;
            font-size: 0.9rem;
            cursor: pointer;
            transition: 0.2s;
        }
        
        .time-slot:hover {
            border-color: #B89643;
            color: #B89643;
        }
        
        .time-slot.selected {
            background: #B89643;
            color: #fff;
            border-color: #B89643;
            box-shadow: 0 5px 15px rgba(184, 150, 67, 0.3);
        }
        
        .time-slot.disabled {
            opacity: 0.4;
            cursor: not-allowed;
            text-decoration: line-through;
            pointer-events: none;
        }

        /* CLIENT FORM */
        .client-input {
            width: 100%;
            padding: 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-family: 'Manrope', sans-serif;
            margin-bottom: 15px;
            box-sizing: border-box;
        }
        
        .contact-note {
            background: rgba(184, 150, 67, 0.1);
            border-left: 3px solid #B89643;
            padding: 15px;
            font-size: 0.85rem;
            color: #555;
            margin-top: 20px;
            border-radius: 0 8px 8px 0;
            line-height: 1.5;
        }
        
        @keyframes slideUp { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
        @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

        @media (max-width: 900px) {
            .massage-container {
                flex-direction: column;
                gap: 40px;
            }
            .massage-text-col {
                padding: 20px;
            }
            .massage-title {
                font-size: 2.5rem;
            }
            .book-modal-box { width: 95%; padding: 25px; }
            .time-grid { grid-template-columns: repeat(3, 1fr); }
        }

                /* --- TREATMENT MENU STYLES --- */
        .price-list { margin: 25px 0 35px 0; width: 100%; }
        .price-row { 
            display: flex; 
            justify-content: space-between; 
            align-items: flex-end; 
            margin-bottom: 14px; 
            font-family: 'Manrope', sans-serif; 
            color: #555; 
        }
        .price-name { font-weight: 600; font-size: 1.05rem; position: relative; top: 4px; }
        .price-dots { 
            flex: 1; 
            border-bottom: 1px dotted #ccc; 
            margin: 0 10px 5px 10px; 
        }
        .price-val { 
            font-weight: 700; 
            color: #B89643; 
            font-family: 'Oswald', sans-serif; 
            letter-spacing: 1px; 
            font-size: 1.1rem;
        }

