/* Cocktail Factory Page Styles */
.cocktail-hero {
    height: 70vh;
    background: linear-gradient(135deg, var(--theme-color) 0%, #8B4513 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cocktail-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/cocktail-bg.jpg') center/cover;
    opacity: 0.2;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content > p {
    font-size: 1.5rem;
    font-weight: 400;
    opacity: 0.95;
    margin-bottom: 15px;
}

.hero-description p {
    font-size: 1.1rem;
    opacity: 0.8;
    font-style: italic;
    margin-bottom: 30px;
}

.start-mixing-btn {
    background: white;
    color: var(--theme-color);
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.start-mixing-btn:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.start-mixing-btn i {
    font-size: 1.2rem;
}

/* Main Builder Section */
.cocktail-builder {
    padding: 100px 0;
    background: #f8f9fa;
}

.builder-header {
    text-align: center;
    margin-bottom: 80px;
}

.builder-header h2 {
    font-size: 3rem;
    color: var(--theme-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.builder-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.builder-content {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.cocktail-preview {
    flex: 0 0 300px;
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
}

.ingredients-panel {
    flex: 1;
    padding: 20px;
}

.ingredients-panel h3 {
    color: #e74c3c;
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 600;
}

.spirit-options, .mixer-options, .garnish-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.ingredient-card {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 15px;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.ingredient-card:hover {
    border-color: #e74c3c;
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(231, 76, 60, 0.2);
}

.ingredient-card.selected {
    border-color: #e74c3c;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
}

.ingredient-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 50%;
    font-size: 1.5rem;
    color: #e74c3c;
}

.ingredient-card.selected .ingredient-icon {
    background: rgba(255,255,255,0.2);
    color: white;
}

.ingredient-icon img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 50%;
}

.ingredient-name {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.ingredient-color {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin: 0 auto;
    border: 2px solid #ddd;
}

.ingredient-card.selected .ingredient-color {
    border-color: white;
}

/* Spirit bars under each spirit */
.spirit-bar {
    height: 4px;
    border-radius: 2px;
    margin-top: 15px;
    width: 100%;
}

.vodka-bar {
    background: linear-gradient(90deg, #e3f2fd, #2196f3);
}

.rum-bar {
    background: linear-gradient(90deg, #fff3e0, #ff9800);
}

.whiskey-bar {
    background: linear-gradient(90deg, #efebe9, #8d6e63);
}

.gin-bar {
    background: linear-gradient(90deg, #e8f5e8, #4caf50);
}

/* Card titles */
.spirit-card h4,
.mixer-card h4,
.garnish-card h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
}

/* Mixer Cards */
.mixer-card {
    background: white;
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.mixer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(214, 34, 35, 0.2);
}

.mixer-card.selected {
    border-color: var(--theme-color);
    background: linear-gradient(135deg, #fff5f5, #ffffff);
}

.mixer-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Mixer specific icons */
.mixer-icon.citrus::before {
    content: '';
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    position: relative;
}

.mixer-icon.citrus::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: #ff6b35;
    border-radius: 50%;
}

.mixer-icon.berry::before {
    content: '';
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    box-shadow: 6px 0 white, -6px 0 white, 3px 8px white, -3px 8px white;
}

.mixer-icon.tropical::before {
    content: '';
    width: 16px;
    height: 24px;
    background: white;
    border-radius: 8px 8px 4px 4px;
    position: relative;
}

.mixer-icon.tropical::after {
    content: '';
    position: absolute;
    top: -4px;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

.mixer-icon.spice::before {
    content: '';
    width: 3px;
    height: 20px;
    background: white;
    border-radius: 2px;
    box-shadow: 6px 0 white, 12px 0 white;
}

/* Garnish Cards */
.garnish-card {
    background: white;
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.garnish-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(214, 34, 35, 0.2);
}

.garnish-card.selected {
    border-color: var(--theme-color);
    background: linear-gradient(135deg, #fff5f5, #ffffff);
}

.garnish-icon {
    width: 45px;
    height: 45px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Garnish specific icons */
.garnish-icon.lemon::before {
    content: '';
    width: 16px;
    height: 24px;
    background: white;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
}

.garnish-icon.cherry::before {
    content: '';
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    box-shadow: 8px 0 white;
}

.garnish-icon.cherry::after {
    content: '';
    position: absolute;
    top: 8px;
    width: 2px;
    height: 12px;
    background: white;
    border-radius: 1px;
    transform: rotate(45deg);
}

.garnish-icon.mint::before {
    content: '';
    width: 8px;
    height: 20px;
    background: white;
    border-radius: 4px 4px 0 0;
    box-shadow: 6px 0 white, 12px 0 white;
}

.garnish-icon.olive::before {
    content: '';
    width: 14px;
    height: 20px;
    background: white;
    border-radius: 50%;
}

.garnish-icon.olive::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: #28a745;
    border-radius: 50%;
}

.spirit-card span, .mixer-card span, .garnish-card span {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.spirit-color {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    margin-top: 10px;
}

/* Cocktail Preview */
.cocktail-preview {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    position: sticky;
    top: 100px;
}

.preview-glass {
    text-align: center;
    margin-bottom: 30px;
}

.cocktail-glass-preview {
    width: 150px;
    height: 200px;
    margin: 0 auto;
    position: relative;
    background: linear-gradient(to bottom, transparent 0%, transparent 20%, #f0f0f0 20%, #f0f0f0 100%);
    border-radius: 0 0 75px 75px;
    border: 3px solid #ddd;
}

.glass-rim {
    position: absolute;
    top: -5px;
    left: -10px;
    right: -10px;
    height: 10px;
    background: #ddd;
    border-radius: 50px;
}

.cocktail-liquid {
    position: absolute;
    bottom: 5px;
    left: 5px;
    right: 5px;
    height: 60%;
    border-radius: 0 0 65px 65px;
    background: linear-gradient(to top, #e8f4fd, #d4a574);
    transition: all 0.3s ease;
}

.cocktail-garnish {
    position: absolute;
    top: -15px;
    right: 10px;
    width: 20px;
    height: 20px;
    background: #4CAF50;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.cocktail-info h4 {
    font-size: 1.5rem;
    color: var(--theme-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.cocktail-name-input input {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    margin-bottom: 25px;
    transition: border-color 0.3s ease;
}

.cocktail-name-input input:focus {
    outline: none;
    border-color: var(--theme-color);
}

.cocktail-stats {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stat-label {
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
}

.stat-bar {
    width: 60%;
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.stat-fill {
    height: 100%;
    background: linear-gradient(135deg, var(--theme-color), #8B4513);
    border-radius: 4px;
    transition: width 0.3s ease;
    width: 0%;
}

/* Builder Actions */
.builder-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.action-btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.reset-btn {
    background: #6c757d;
    color: white;
}

.save-btn {
    background: #28a745;
    color: white;
}

.share-btn {
    background: var(--theme-color);
    color: white;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.action-btn.share-btn {
    background: #007bff;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.action-btn.share-btn:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.action-btn.share-btn i {
    font-size: 1rem;
}

/* Featured Cocktails Section */
.featured-cocktails {
    padding: 100px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 3rem;
    color: var(--theme-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.cocktails-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.cocktail-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.cocktail-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(214, 34, 35, 0.15);
}

.mini-glass {
    width: 80px;
    height: 100px;
    margin: 0 auto 20px;
    position: relative;
    background: linear-gradient(to bottom, transparent 0%, transparent 20%, #f0f0f0 20%, #f0f0f0 100%);
    border-radius: 0 0 40px 40px;
    border: 2px solid #ddd;
}

.mini-liquid {
    position: absolute;
    bottom: 2px;
    left: 2px;
    right: 2px;
    height: 70%;
    border-radius: 0 0 35px 35px;
}

.cocktail-details h4 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: 700;
}

.cocktail-details p {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.cocktail-rating {
    margin-bottom: 20px;
}

.cocktail-rating i {
    color: #ffc107;
    margin-right: 2px;
}

.cocktail-rating span {
    margin-left: 10px;
    font-weight: 600;
    color: #333;
}

.try-recipe-btn {
    background: var(--theme-color);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.try-recipe-btn:hover {
    background: #c41e1f;
    transform: translateY(-2px);
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.step-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position: relative;
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-10px);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--theme-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step-icon {
    margin: 20px 0;
}

.step-icon i {
    font-size: 3rem;
    color: var(--theme-color);
}

.step-card h4 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
}

.step-card p {
    color: #666;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--theme-color) 0%, #8B4513 100%);
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: white;
    color: var(--theme-color);
}

.btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--theme-color);
    transform: translateY(-2px);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .builder-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .cocktail-preview {
        position: relative;
        top: auto;
    }
    
    .spirit-options, .mixer-options, .garnish-options {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .builder-header h2,
    .section-header h2 {
        font-size: 2rem;
    }
    
    .cocktails-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 250px;
        text-align: center;
    }
    
    .builder-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .action-btn {
        width: 200px;
        justify-content: center;
    }
}

/* Modal Styles */
.save-modal-overlay, .simple-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.save-modal {
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.save-modal h3 {
    color: var(--theme-color);
    margin-bottom: 30px;
    font-size: 1.8rem;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--theme-color);
}

.form-group textarea {
    height: 80px;
    resize: vertical;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
}

.modal-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 30px;
}

.modal-actions button {
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-actions button[type="button"] {
    background: #6c757d;
    color: white;
}

.modal-actions button[type="submit"] {
    background: var(--theme-color);
    color: white;
}

.modal-actions button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.simple-modal {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    max-width: 400px;
    width: 90%;
}

.simple-modal p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #333;
}

.simple-modal button {
    background: var(--theme-color);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.simple-modal button:hover {
    background: #c41e1f;
}

/* Community Cocktails Enhanced */
.cocktail-stats-mini {
    display: flex;
    gap: 10px;
    margin: 10px 0;
    font-size: 0.8rem;
}

.cocktail-stats-mini span {
    background: #f8f9fa;
    padding: 4px 8px;
    border-radius: 12px;
    font-weight: 600;
}

.cocktail-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 15px 0;
    font-size: 0.9rem;
    color: #666;
}

.cocktail-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.like-btn {
    background: #f8f9fa;
    color: #666;
    border: 1px solid #e0e0e0;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
}

.like-btn:hover {
    background: #ff6b6b;
    color: white;
    border-color: #ff6b6b;
}

.try-recipe-btn {
    background: var(--theme-color);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
}

.try-recipe-btn:hover {
    background: #c41e1f;
    transform: translateY(-1px);
}

/* Shared Cocktail Banner */
.shared-cocktail-banner {
    background: linear-gradient(135deg, var(--theme-color), #8B4513);
    color: white;
    padding: 40px 0;
    margin-bottom: 40px;
}

.cocktail-preview-card {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(10px);
    text-align: center;
}

.ingredients {
    margin: 20px 0;
}

.ingredient {
    background: rgba(255,255,255,0.2);
    padding: 5px 15px;
    border-radius: 20px;
    margin: 0 5px;
    font-size: 0.9rem;
}

.try-shared-btn {
    background: white;
    color: var(--theme-color);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
}

/* Success Modal */
.success-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.success-modal {
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.share-url-container {
    display: flex;
    gap: 10px;
    margin: 20px 0;
}

.share-url-container input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.copy-btn {
    background: var(--theme-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

.social-share {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 20px 0;
}

.share-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    color: white;
    cursor: pointer;
    font-size: 0.9rem;
}

.share-btn.facebook { background: #1877f2; }
.share-btn.twitter { background: #1da1f2; }
.share-btn.whatsapp { background: #25d366; }


/* Responsive adjustments */
@media (max-width: 768px) {
    .spirit-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .mixer-icon {
        width: 40px;
        height: 40px;
    }
    
    .garnish-icon {
        width: 35px;
        height: 35px;
    }
    
    .spirit-card,
    .mixer-card,
    .garnish-card {
        padding: 20px 15px;
    }
    
    .spirit-card h4,
    .mixer-card h4,
    .garnish-card h4 {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .builder-content {
        flex-direction: column;
    }
    
    .cocktail-preview {
        flex: none;
    }
    
    .spirit-options, .mixer-options, .garnish-options {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 10px;
    }
}



