/* Modern Business Website CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff7ed;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Header Styles */
.header {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    padding: 1rem 0;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 2rem;
}

.logo-section {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #f97316;
    text-decoration: none;
    background: linear-gradient(135deg, #f97316, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.business-info {
    color: #666;
    font-size: 0.9rem;
}

.nav-container {
    flex: 1;
    max-width: 800px;
}

/* Navigation Styles */
.main-nav {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0;
    margin: 0;
    padding: 0;
}

.main-nav li {
    margin: 0;
}

.main-nav a {
    display: block;
    padding: 12px 16px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    white-space: nowrap;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.main-nav a:hover, .main-nav a.active {
    background: linear-gradient(135deg, #f97316, #f97316);
    color: white;
    border-bottom-color: #ea580c;
    transform: translateY(-2px);
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 250px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    overflow: hidden;
    z-index: 1000;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    border-bottom: 1px solid #eee;
    border-left: 3px solid transparent;
}

.dropdown-content a:hover {
    border-left-color: #f97316;
    background: #fff7ed;
}

/* Main Content Styles */
.main-content {
    background: white;
    margin: 20px 0;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Cards - Glassmorphism Effect */
.card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card:first-child {
    margin-top: 0;
}

.card:last-child {
    margin-bottom: 0;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(14, 165, 233, 0.3);
}

/* Grid Layout */
.grid {
    display: grid;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* Button Styles - Fresh Gradient */
.btn {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(135deg, #f97316, #f97316);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    margin: 5px;
    position: relative;
    overflow: hidden;
}

.btn:hover {
    background: linear-gradient(135deg, #ea580c, #f97316);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, #f97316, #ea580c);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #f97316, #ea580c);
}

.btn-success {
    background: linear-gradient(135deg, #f97316, #f97316);
}

.btn-success:hover {
    background: linear-gradient(135deg, #ea580c, #ea580c);
}

.btn-warning {
    background: linear-gradient(135deg, #f97316, #f97316);
    color: #333;
}

.btn-warning:hover {
    background: linear-gradient(135deg, #ea580c, #f97316);
}

.btn-danger {
    background: linear-gradient(135deg, #ea580c, #f97316);
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2rem;
    margin: 1.5rem 0;
}

/* Enhanced Product Cards */
.product-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    border-color: rgba(249, 115, 22, 0.4);
}

.product-image {
    width: 100%;
    height: 200px;
    background: #fff7ed;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #ccc;
}

.product-info {
    padding: 1.5rem;
}

.product-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #333;
}

.product-price {
    font-size: 1.5rem;
    color: #f97316;
    font-weight: bold;
    margin: 0.5rem 0;
    background: linear-gradient(135deg, #f97316, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-description {
    color: #666;
    margin: 0.5rem 0;
}

/* Price List */
.price-list {
    background: #fff7ed;
    border-radius: 10px;
    padding: 2rem;
    margin: 1rem 0;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: white;
    margin: 0.5rem 0;
    border-radius: 8px;
    border-left: 4px solid #f97316;
}

.price-name {
    font-weight: 500;
    flex: 1;
}

.price-amount {
    font-weight: bold;
    color: #f97316;
    font-size: 1.2rem;
}

/* Contact Info */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.contact-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 1.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    font-size: 3rem;
    color: #f97316;
    margin-bottom: 1rem;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
}

/* Social Media Grid */
.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.social-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 1.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.social-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.social-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Payment Methods */
.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.payment-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.payment-card:hover {
    border-color: #f97316;
}

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.testimonial {
    background: #fff7ed;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #f97316;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
    color: #555;
}

.testimonial-author {
    font-weight: bold;
    color: #f97316;
}

/* Video Placeholder */
.video-placeholder {
    background: #fff7ed;
    height: 300px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #ccc;
    margin: 1rem 0;
}

/* Table Styles */
.table-container {
    overflow-x: auto;
    margin: 1rem 0;
}

.table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.table th,
.table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.table th {
    background: #f97316;
    color: white;
    font-weight: 500;
}

.table tr:hover {
    background: #fff7ed;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .logo-section {
        text-align: center;
    }
    
    .business-info {
        text-align: center;
    }
    
    .nav-container {
        max-width: 100%;
        width: 100%;
    }
    
    .main-nav {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .main-nav a {
        padding: 10px 12px;
        font-size: 0.85rem;
        border-bottom: none;
        border-left: 3px solid transparent;
    }
    
    .main-nav a:hover, .main-nav a.active {
        border-left-color: #fdba74;
    }
    
    .dropdown-content {
        position: static;
        display: block;
        box-shadow: none;
        background: #fff7ed;
    }
    
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .contact-grid,
    .social-grid,
    .payment-grid {
        grid-template-columns: 1fr;
    }
    
    .main-content {
        padding: 1rem;
    }
}

/* Social Media Posts Styling */
.social-posts-container {
    margin: 1.5rem 0;
}

.social-platform-section {
    margin: 2rem 0;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.social-platform-section:first-child {
    margin-top: 0;
}

.social-platform-section:last-child {
    margin-bottom: 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #fff7ed;
}

.section-header h4 {
    color: #333;
    font-size: 1.3rem;
    margin: 0;
}

.refresh-posts {
    background: #f97316;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.refresh-posts:hover {
    background: #f97316;
    transform: translateY(-1px);
}

.refresh-posts:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

/* Instagram Posts Grid */
.instagram-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.instagram-post-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.instagram-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.post-media {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.post-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.instagram-post-card:hover .post-media img {
    transform: scale(1.05);
}

.post-overlay {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
}

.post-content {
    padding: 1rem;
}

.post-content h5 {
    margin: 0 0 0.5rem 0;
    color: #333;
    font-size: 1rem;
    line-height: 1.4;
}

.post-time {
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.post-actions {
    display: flex;
    gap: 0.5rem;
}

/* TikTok Videos Grid */
.tiktok-videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.tiktok-video-card {
    background: linear-gradient(135deg, #f97316 0%, #fdba74 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tiktok-video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.tiktok-video-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s ease;
}

.tiktok-video-card:hover::before {
    left: 100%;
}

.video-thumbnail {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
}

.tiktok-video-card h5 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
}

.tiktok-video-card p {
    margin: 0.5rem 0;
    opacity: 0.9;
    font-size: 0.9rem;
}

.tiktok-video-card small {
    opacity: 0.7;
    font-size: 0.8rem;
}

.video-platform {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.3);
    padding: 4px 8px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: bold;
}

/* TikTok Embed Container */
.tiktok-embed-container {
    background: #fff7ed;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin: 1.5rem 0;
}

.tiktok-embed-wrapper {
    max-width: 400px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Loading Placeholder */
.loading-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    color: #666;
}

.spinner {
    font-size: 2rem;
    animation: spin 2s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-placeholder p {
    margin: 0;
    font-size: 0.9rem;
}

/* Small Button Style */
.btn-sm {
    padding: 6px 12px;
    font-size: 0.8rem;
    border-radius: 15px;
}

/* Platform-specific Colors */
.instagram-gradient {
    background: linear-gradient(45deg, #f97316 0%, #f97316 25%, #f97316 50%, #f97316 75%, #f97316 100%);
}

.tiktok-gradient {
    background: linear-gradient(135deg, #f97316 0%, #fdba74 100%);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding: 1.8rem 1rem;
    }
    
    .hero-section h2 {
        font-size: 1.8rem;
    }
    
    .social-stats {
        flex-direction: row;
        gap: 1rem;
    }
    
    .stat-item {
        padding: 0.6rem;
    }
    
    .stat-item strong {
        font-size: 1.5rem;
    }
    
    .manager-profile {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .manager-info {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .quick-links {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .promo-grid {
        grid-template-columns: 1fr;
    }
    
    .content-categories {
        grid-template-columns: 1fr;
    }
    
    .instagram-posts-grid,
    .tiktok-videos-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .post-media {
        height: 150px;
    }
}
    
    .instagram-posts-grid,
    .tiktok-videos-grid {
        grid-template-columns: 1fr;
    }
    
    .social-platform-section {
        padding: 1rem;
    }
    
    .post-media {
        height: 200px;
    }
}

/* Hero Section Enhanced */
.hero-section {
    background: linear-gradient(135deg, #f97316 0%, #f97316 50%, #ea580c 100%);
    color: white;
    text-align: center;
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    margin: 1.5rem 0;
    box-shadow: 0 15px 40px rgba(14, 165, 233, 0.3);
}

.hero-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.hero-section p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.hero-section .social-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

/* Social Statistics */
.social-stats {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item strong {
    display: block;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    color: #f97316;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.stat-item span {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Enhanced Social Cards */
.social-card.featured {
    border: 2px solid #f97316;
    background: linear-gradient(135deg, #fff7ed 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.social-card.featured::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.social-card.featured:hover::before {
    animation: shine 0.6s ease-in-out;
    opacity: 1;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg);
}

.social-card.featured .social-icon {
    color: #f97316;
    font-size: 2.5rem;
}

.social-card p {
    margin: 0.5rem 0;
    color: #666;
    font-size: 0.95rem;
}

.social-card small {
    color: #888;
    font-style: italic;
    font-size: 0.85rem;
}

/* Enhanced Product Cards */
.product-card.featured-product {
    position: relative;
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, #f97316, #f97316) border-box;
}

.product-card.featured-product::before {
    content: 'FEATURED';
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #f97316, #f97316);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: bold;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(249, 115, 22, 0.4);
}

.social-tags {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.tag {
    background: #fff7ed;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    color: #666;
    border: 1px solid #ddd;
}

/* Manager Profile Section */
.manager-profile {
    background: linear-gradient(135deg, #fff7ed 0%, #ffffff 100%);
    padding: 2rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.manager-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
}

.manager-avatar {
    font-size: 4rem;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f97316 0%, #f97316 100%);
    border-radius: 50%;
    color: white;
    box-shadow: 0 5px 20px rgba(249, 115, 22, 0.4);
    flex-shrink: 0;
    overflow: hidden;
}

.manager-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.btn-outline {
    background: transparent;
    border: 2px solid #f97316;
    color: #f97316;
    border-radius: 25px;
}

.btn-outline:hover {
    background: linear-gradient(135deg, #f97316, #f97316);
    color: white;
}

.manager-details h4 {
    margin: 0 0 0.5rem 0;
    color: #333;
    font-size: 1.3rem;
    font-weight: bold;
}

.manager-details h5 {
    margin: 0 0 0.5rem 0;
    color: #333;
    font-size: 1rem;
}

.manager-details p {
    margin: 0.25rem 0;
    color: #666;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.btn-outline {
    background: transparent;
    border: 2px solid #f97316;
    color: #f97316;
}

.btn-outline:hover {
    background: #f97316;
    color: white;
}

/* Promo Grid */
.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.promo-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.promo-card.featured {
    border: 2px solid #f97316;
    background: linear-gradient(135deg, #fff7ed 0%, #ffffff 100%);
}

.promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.promo-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.promo-card h4 {
    margin: 0 0 1rem 0;
    color: #333;
    font-size: 1.2rem;
}

.promo-card h5 {
    margin: 0 0 1rem 0;
    color: #333;
    font-size: 1.1rem;
    text-align: center;
}

.promo-title {
    font-size: 1.4rem;
    font-weight: bold;
    color: #f97316;
    margin: 1rem 0;
    background: linear-gradient(135deg, #f97316, #fdba74);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.promo-card p {
    color: #666;
    margin: 0.5rem 0;
}

.promo-card ul {
    text-align: left;
}

.promo-card ul li {
    margin: 0.5rem 0;
    color: #666;
    line-height: 1.5;
}

.promo-period {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
    margin: 1rem 0;
}

/* Content Categories */
.content-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.category-card {
    background: linear-gradient(135deg, #fff7ed 0%, #ffffff 100%);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-color: #f97316;
}

.category-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.category-card h5 {
    margin: 0 0 0.5rem 0;
    color: #333;
    font-size: 1.1rem;
}

.category-card p {
    margin: 0.5rem 0;
    color: #666;
    font-size: 0.9rem;
}

.category-card small {
    color: #888;
    font-size: 0.8rem;
}

/* Contact Grid Enhancements */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.contact-card.primary {
    background: linear-gradient(135deg, #f97316 0%, #fdba74 100%);
    color: white;
}

.contact-card.primary .contact-icon {
    color: white;
}

.contact-card.primary h4,
.contact-card.primary p {
    color: white;
}

.contact-card.primary strong {
    color: rgba(255, 255, 255, 0.9);
}

/* Enhanced CTA Section */
.cta-section {
    background: linear-gradient(135deg, #fff7ed 0%, #ffffff 100%);
    border: 2px solid #f97316;
    position: relative;
    overflow: hidden;
    padding: 2rem;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23f97316" opacity="0.05"/><circle cx="80" cy="60" r="1" fill="%23fdba74" opacity="0.05"/><circle cx="40" cy="80" r="1" fill="%23f97316" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    z-index: 0;
}

.cta-section > * {
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.quick-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.quick-links a {
    color: #f97316;
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    background: rgba(14, 165, 233, 0.1);
}

.quick-links a:hover {
    background: linear-gradient(135deg, #f97316, #f97316);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(249, 115, 22, 0.4);
}

/* Enhanced Instagram Post Cards */
.instagram-post-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.instagram-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.instagram-post-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.instagram-post-card:hover img {
    transform: scale(1.05);
}

.post-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1rem 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.instagram-post-card:hover .post-overlay {
    transform: translateY(0);
}

.post-overlay p {
    margin: 0 0 0.5rem 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.post-overlay small {
    opacity: 0.8;
    font-size: 0.8rem;
}

.post-overlay .btn {
    margin-top: 0.5rem;
    font-size: 0.8rem;
    padding: 6px 12px;
}

/* Video Meta Information */
.video-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.video-meta small {
    opacity: 0.8;
}

.video-platform {
    background: rgba(0, 0, 0, 0.3);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: bold;
}

/* Additional Button Styles */
.btn-primary {
    background: linear-gradient(135deg, #f97316 0%, #fdba74 100%);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #f97316 0%, #f97316 100%);
}

/* Enhanced Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 2rem 1rem;
    }
    
    .hero-section h2 {
        font-size: 2rem;
    }
    
    .social-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .manager-profile {
        flex-direction: column;
        text-align: center;
    }
    
    .manager-info {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .quick-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .promo-grid {
        grid-template-columns: 1fr;
    }
    
    .content-categories {
        grid-template-columns: 1fr;
    }
    
    .instagram-posts-grid,
    .tiktok-videos-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .post-media {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .social-card {
        padding: 1rem;
    }
    
    .social-icon {
        font-size: 2rem;
    }
    
    .promo-card {
        padding: 1.2rem;
    }
    
    .category-card {
        padding: 1rem;
    }
    
    .quick-links a {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.6s ease-in;
}

.slide-up {
    animation: slideUp 0.6s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced Profile Styles */
.profile-container {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    background: linear-gradient(135deg, #fff7ed 0%, #ffffff 100%);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin: 1.5rem 0;
}

.profile-photo-section {
    flex-shrink: 0;
}

.profile-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #f97316;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.profile-info {
    flex: 1;
}

.profile-info h4 {
    font-size: 1.8rem;
    color: #333;
    margin: 0 0 0.5rem 0;
    font-weight: bold;
}

.profile-title {
    font-size: 1.2rem;
    color: #f97316;
    font-weight: 600;
    margin: 0 0 1.5rem 0;
}

.roles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.role-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #f97316;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.role-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.role-card h5 {
    color: #333;
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
}

.role-card ul {
    margin: 0;
    padding-left: 1.2rem;
}

.role-card li {
    margin: 0.5rem 0;
    color: #666;
    line-height: 1.5;
}

/* Organizational Chart Styles */
.org-chart {
    margin: 2rem 0;
}

.org-level {
    margin: 2rem 0;
    text-align: center;
}

.org-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin: 1rem auto;
    max-width: 300px;
    transition: all 0.3s ease;
}

.org-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.org-card.highlight {
    background: linear-gradient(135deg, #f97316 0%, #f97316 100%);
    color: white;
    border: 2px solid #f97316;
    position: relative;
    overflow: hidden;
}

.org-card.highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.org-card.highlight:hover::before {
    opacity: 1;
}

.org-card.highlight h4,
.org-card.highlight p {
    color: white;
}

.org-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem auto;
    display: block;
    border: 3px solid rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.org-card:hover .org-photo {
    transform: scale(1.1);
}

.org-photo-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem auto;
}

.org-card h4 {
    margin: 0 0 0.5rem 0;
    color: #333;
    font-size: 1.3rem;
}

.org-position {
    font-weight: 600;
    color: #f97316;
    margin: 0 0 1rem 0;
    font-size: 1rem;
}

.org-description {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

.org-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.org-card h5 {
    margin: 0 0 1rem 0;
    color: #333;
    font-size: 1rem;
}

.org-card ul {
    margin: 0;
    padding-left: 1.2rem;
    text-align: left;
}

.org-card li {
    margin: 0.4rem 0;
    color: #666;
    font-size: 0.9rem;
}

.org-bridge {
    height: 30px;
    width: 2px;
    background: linear-gradient(to bottom, #f97316, #fdba74);
    margin: 0 auto;
    position: relative;
}

.org-bridge::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #fdba74;
}

/* Working Hours Styles */
.hours-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.hours-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.hours-card:hover {
    border-color: #f97316;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.hours-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hours-card h4 {
    margin: 0 0 1rem 0;
    color: #333;
    font-size: 1.2rem;
}

.hours-time {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f97316;
    margin: 0 0 0.5rem 0;
}

.hours-days {
    color: #666;
    font-weight: 600;
    margin: 0 0 1rem 0;
}

.hours-desc {
    color: #888;
    font-size: 0.9rem;
    margin: 0;
}

/* Contact Photo Styles */
.contact-photo {
    text-align: center;
    margin-bottom: 1rem;
}

.contact-photo img {
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f97316;
}

/* Responsive Design for New Styles */
@media (max-width: 768px) {
    .profile-container {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .profile-photo {
        width: 150px;
        height: 150px;
        margin: 0 auto 1rem auto;
    }
    
    .roles-grid {
        grid-template-columns: 1fr;
    }
    
    .org-cards {
        grid-template-columns: 1fr;
    }
    
    .hours-container {
        grid-template-columns: 1fr;
    }
    
    .org-card {
        max-width: 100%;
    }
    
    .org-bridge {
        height: 20px;
    }
}

@media (max-width: 480px) {
    .profile-container {
        padding: 1rem;
    }
    
    .role-card {
        padding: 1rem;
    }
    
    .hours-card {
        padding: 1.5rem;
    }
    
    .org-card {
        padding: 1rem;
    }
}

/* Product Features Styling */
.product-features {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.product-features .tag {
    background: linear-gradient(135deg, #f97316 0%, #fdba74 100%);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    border: none;
}

/* Product Actions Styling */
.product-actions {
    margin-top: 1.5rem;
    text-align: center;
}

.product-actions .btn {
    width: 100%;
    padding: 12px 16px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
}

.product-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
    background: #ea580c;
}

/* Enhanced Product Card Styling for Catalog */
.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: #f97316;
}

.product-card img {
    transition: transform 0.3s ease;
}

.product-card:hover img {
    transform: scale(1.05);
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mt-1 { margin-top: 1rem; }
.mb-1 { margin-bottom: 1rem; }
.p-1 { padding: 1rem; }
.hidden { display: none; }
.visible { display: block; }

/* Complaint Menu Styles */
.max-w-4xl {
    max-width: 56rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.mb-12 {
    margin-bottom: 3rem;
}

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.gap-3 {
    gap: 0.75rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.w-10 {
    width: 2.5rem;
}

.h-10 {
    height: 2.5rem;
}

.text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
}

.font-bold {
    font-weight: 700;
}

.text-fresh-green {
    color: #f97316;
}

.text-fresh-blue {
    color: #f97316;
}

.max-w-2xl {
    max-width: 42rem;
}

.text-fresh-green\/70 {
    color: rgba(16, 185, 129, 0.7);
}

.rounded-2xl {
    border-radius: 1rem;
}

.transition-all {
    transition: all 0.3s ease;
}

.duration-300 {
    transition-duration: 300ms;
}

.bg-white {
    background-color: #ffffff;
}

.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.hover\:shadow-xl:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.p-6 {
    padding: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.flex-col {
    flex-direction: column;
}

.sm\:flex-row {
    flex-direction: row;
}

@media (min-width: 640px) {
    .sm\:flex-row {
        flex-direction: row;
    }
}

.gap-4 {
    gap: 1rem;
}

.w-16 {
    width: 4rem;
}

.h-16 {
    height: 4rem;
}

.bg-fresh-blue {
    background-color: #f97316;
}

.rounded-full {
    border-radius: 9999px;
}

.justify-center {
    justify-content: center;
}

.w-8 {
    width: 2rem;
}

.h-8 {
    height: 2rem;
}

.text-white {
    color: #ffffff;
}

.text-center {
    text-align: center;
}

.sm\:text-left {
    text-align: left;
}

@media (min-width: 640px) {
    .sm\:text-left {
        text-align: left;
    }
}

.flex-1 {
    flex: 1 1 0%;
}

.font-semibold {
    font-weight: 600;
}

.justify-start {
    justify-content: flex-start;
}

.gap-4 {
    gap: 1rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.w-4 {
    width: 1rem;
}

.h-4 {
    height: 1rem;
}

.text-fresh-green\/60 {
    color: rgba(16, 185, 129, 0.6);
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.inline-flex {
    display: inline-flex;
}

.font-semibold {
    font-weight: 600;
}

.rounded-full {
    border-radius: 9999px;
}

.transform {
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.hover\:scale-105:hover {
    --tw-scale-x: 1.05;
    --tw-scale-y: 1.05;
}

.active\:scale-95:active {
    --tw-scale-x: 0.95;
    --tw-scale-y: 0.95;
}

.hover\:bg-fresh-blue-dark:hover {
    background-color: #ea580c;
}

.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.shadow-fresh-blue\/30 {
    box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.3), 0 4px 6px -2px rgba(59, 130, 246, 0.15);
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.mr-2 {
    margin-right: 0.5rem;
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.grid {
    display: grid;
}

.sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 640px) {
    .sm\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (min-width: 1024px) {
    .lg\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.gap-4 {
    gap: 1rem;
}

.relative {
    position: relative;
}

.bg-fresh-green-pale {
    background-color: #fff7ed;
}

.rounded-xl {
    border-radius: 0.75rem;
}

.p-4 {
    padding: 1rem;
}

.h-full {
    height: 100%;
}

.w-10 {
    width: 2.5rem;
}

.h-10 {
    height: 2.5rem;
}

.font-bold {
    font-weight: 700;
}

.mb-3 {
    margin-bottom: 0.75rem;
}

.font-semibold {
    font-weight: 600;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.hidden {
    display: none;
}

.lg\:block {
    display: block;
}

@media (min-width: 1024px) {
    .lg\:block {
        display: block;
    }
}

.absolute {
    position: absolute;
}

.top-1\/2 {
    top: 50%;
}

.-right-2 {
    right: -0.5rem;
}

.-translate-y-1\/2 {
    transform: translateY(-50%);
}

.z-10 {
    z-index: 10;
}

.w-4 {
    width: 1rem;
}

.h-4 {
    height: 1rem;
}

.bg-fresh-yellow\/20 {
    background-color: rgba(255, 193, 7, 0.2);
}

.p-8 {
    padding: 2rem;
}

.space-y-6 > :not([hidden]) ~ :not([hidden]) {
    margin-top: 1.5rem;
}

.block {
    display: block;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.font-medium {
    font-weight: 500;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.w-full {
    width: 100%;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.rounded-xl {
    border-radius: 0.75rem;
}

.border {
    border-width: 1px;
}

.border-fresh-green-pale {
    border-color: #fed7aa;
}

.focus\:border-fresh-blue:focus {
    border-color: #f97316;
}

.focus\:ring-2:focus {
    box-shadow: 0 0 0 2px #f97316;
}

.focus\:ring-fresh-blue\/20:focus {
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}

.outline-none {
    outline: 2px solid transparent;
    outline-offset: 2px;
}

.placeholder\:text-fresh-green\/60::placeholder {
    color: rgba(16, 185, 129, 0.6);
}

.text-fresh-green\/70 {
    color: rgba(16, 185, 129, 0.7);
}

.rows-5 {
    rows: 5;
}

.resize-none {
    resize: none;
}

.px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.w-full {
    width: 100%;
}

.text-center {
    text-align: center;
}

.text-fresh-green\/70 {
    color: rgba(16, 185, 129, 0.7);
}

.font-bold {
    font-weight: 700;
}

.text-fresh-blue {
    color: #f97316;
}

.mr-2 {
    margin-right: 0.5rem;
}

.w-5 {
    width: 1.25rem;
}

.h-5 {
    height: 1.25rem;
}