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

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f8f9fa;
    color: #333;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Customer Layout Styles */
.customer-layout {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}

.navbar {
    background: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    white-space: nowrap;
    margin: 0;
}

.search-bar {
    flex: 1;
    max-width: 500px;
}

.search-input {
    width: 100%;
    padding: 0.75rem 1.5rem;
    border: 2px solid #f0f0f0;
    border-radius: 50px;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.search-input:focus {
    outline: none;
    border-color: #e91e63;
}

.nav-links {
    display: flex;
    gap: 2rem;
    margin-left: auto;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-link.active {
    color: #e91e63;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #e91e63;
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

.hero {
    background: linear-gradient(135deg, #e91e63 0%, #9c27b0 100%);
    padding: 5rem 0;
    color: white;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-text {
    flex: 1;
}

.hero-text h2 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.5px;
}

.hero-text p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-image {
    flex: 1;
    position: relative;
}

.slideshow-container {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.slideshow-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.1) 0%, rgba(156, 39, 176, 0.1) 100%);
}

.slideshow-slide.active {
    opacity: 1;
    z-index: 1;
}

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

.slideshow-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid white;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.indicator.active {
    background: white;
    width: 30px;
    border-radius: 6px;
}

.placeholder-box {
    background: rgba(255,255,255,0.2);
    border: 2px dashed rgba(255,255,255,0.5);
    border-radius: 20px;
    padding: 8rem 2rem;
    text-align: center;
    color: white;
    font-size: 1.2rem;
}

.btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #1a1a1a;
    color: white;
}

.btn-primary:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.btn-secondary {
    background: white;
    color: #e91e63;
}

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

.categories-section {
    padding: 3rem 0 1rem;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.category-filters {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.category-btn {
    padding: 0.7rem 1.8rem;
    border: 2px solid #e91e63;
    border-radius: 50px;
    background: white;
    color: #e91e63;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    font-size: 1rem;
}

.category-btn:hover, .category-btn.active {
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    color: white;
    border-color: transparent;
}

.products-section {
    padding: 3rem 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    grid-template-rows: repeat(2, auto);
    gap: 1.5rem;
    overflow-x: auto;
    overflow-y: hidden;
    grid-auto-flow: column;
    scroll-behavior: smooth;
    padding-bottom: 1rem;
}

.products-grid::-webkit-scrollbar {
    height: 8px;
}

.products-grid::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.products-grid::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    border-radius: 10px;
}

.products-grid::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #c2185b, #7b1fa2);
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s, opacity 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.2);
}

.product-card[style*="display: none"] {
    opacity: 0;
    transform: scale(0.95);
}

.product-image {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, #fce4ec 0%, #f3e5f5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

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

.product-info {
    padding: 1rem;
}

.product-name {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: #333;
}

.product-size {
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
    color: #666;
}

.product-price {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #e91e63;
    font-weight: 600;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid #25d366;
    color: #25d366;
    background: white;
}

.btn-whatsapp:hover {
    background: #e8f5e9;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

.whatsapp-icon {
    font-size: 1.2rem;
}

.no-products {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 15px;
    color: #666;
    font-size: 1.1rem;
}

.trust-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #fce4ec 0%, #f3e5f5 100%);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.trust-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.trust-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.15);
}

.trust-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.trust-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #333;
}

.trust-item p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

.category-header {
    padding: 2rem 0;
    background: white;
}

.category-header h2 {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.back-link {
    color: #e91e63;
    text-decoration: none;
    font-weight: 600;
}

/* Admin Layout Styles */
.admin-layout {
    min-height: 100vh;
    background: #f5f5f5;
}

.admin-header {
    background: white;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.admin-logo-image {
    height: 30px;
    width: auto;
    object-fit: contain;
}

.admin-header h1 {
    font-size: 1.3rem;
    color: #333;
    margin: 0;
}

.admin-tabs {
    background: white;
    padding: 0 1.5rem;
    display: flex;
    gap: 0.5rem;
    border-bottom: 2px solid #e0e0e0;
}

.tab {
    padding: 1rem 2rem;
    text-decoration: none;
    color: #666;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
}

.tab:hover, .tab.active {
    color: #e91e63;
    border-bottom-color: #e91e63;
}

.admin-content {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.category-filters-admin {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.products-list {
    background: white;
    border-radius: 10px;
    overflow: hidden;
}

.product-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
    transition: background 0.3s;
}

.product-row:hover {
    background: #f9f9f9;
}

.product-row.disabled {
    opacity: 0.5;
    background: #f5f5f5;
}

.product-image-thumb {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    background: #f0f0f0;
    flex-shrink: 0;
}

.product-image-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.placeholder-thumb {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 0.8rem;
    background: linear-gradient(135deg, #fce4ec 0%, #f3e5f5 100%);
}

.product-details {
    flex: 1;
}

.product-details h4 {
    margin-bottom: 0.3rem;
    color: #333;
}

.product-details p {
    color: #666;
    font-size: 0.95rem;
}

.product-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-edit {
    background: white;
    color: #e91e63;
    border: 2px solid #e91e63;
    padding: 0.6rem 1.5rem;
}

.btn-edit:hover {
    background: #e91e63;
    color: white;
}

.btn-disable {
    background: white;
    color: #666;
    border: 2px solid #ddd;
    padding: 0.6rem 1.5rem;
}

.btn-disable:hover {
    background: #f44336;
    color: white;
    border-color: #f44336;
}

.admin-note {
    margin-top: 2rem;
    padding: 1rem;
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 5px;
}

.admin-note p {
    margin: 0.3rem 0;
    color: #856404;
}

.product-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    max-width: 800px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #666;
    font-weight: 500;
}

.form-group input[type="text"],
.form-group input[type="number"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e91e63;
}

.form-group input[type="file"] {
    padding: 0.5rem 0;
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.admin-login {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #ec4899 0%, #a855f7 50%, #8b5cf6 100%);
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.admin-login::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-20px, -20px) rotate(5deg); }
}

.login-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    width: 100%;
    align-items: center;
}

.login-brand {
    color: white;
    text-align: center;
    animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.brand-icon {
    width: 120px;
    height: 180px;
    margin: 0 auto 2rem;
    color: rgba(255,255,255,0.9);
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.brand-icon svg {
    width: 100%;
    height: 100%;
}

.login-brand h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.2);
    font-family: 'Playfair Display', serif;
}

.brand-tagline {
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 300;
    letter-spacing: 1px;
}

.login-card {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    width: 100%;
    max-width: 450px;
    animation: slideInRight 0.8s ease-out;
    position: relative;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-header h2 {
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.login-header p {
    color: #666;
    font-size: 0.95rem;
}

.login-form .form-group {
    margin-bottom: 1.5rem;
}

.login-form label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 600;
    font-size: 0.9rem;
}

.input-icon {
    font-size: 1.1rem;
}

.login-form input[type="text"],
.login-form input[type="password"] {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s;
    background: #f8f9fa;
}

.login-form input:focus {
    outline: none;
    border-color: #ec4899;
    background: white;
    box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.1);
}

.btn-login {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #ec4899 0%, #a855f7 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(236, 72, 153, 0.4);
}

.btn-login:active {
    transform: translateY(0);
}

.btn-arrow {
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.btn-login:hover .btn-arrow {
    transform: translateX(5px);
}

.login-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e0e0e0;
}

.login-footer p {
    color: #999;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.login-footer p::before {
    content: '🔒';
}

.alert {
    padding: 1rem 1.2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert-icon {
    font-size: 1.2rem;
}

.alert-error {
    background: #fee;
    color: #c62828;
    border: 2px solid #ffcdd2;
}

.alert-success {
    background: #e8f5e9;
    color: #2e7d32;
    border: 2px solid #c8e6c9;
}

/* Responsive Design */
@media (max-width: 900px) {
    .login-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .login-brand {
        display: none;
    }
    
    .login-card {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .admin-login {
        padding: 1rem;
    }
    
    .login-card {
        padding: 2rem 1.5rem;
    }
    
    .login-header h2 {
        font-size: 1.5rem;
    }
}

/* Hero Images Management */
.hero-upload-section {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.hero-upload-section h3 {
    margin-bottom: 1rem;
    color: #333;
}

.hero-upload-form {
    display: flex;
    gap: 1rem;
    align-items: flex-end;
}

.hero-images-list {
    background: white;
    padding: 2rem;
    border-radius: 10px;
}

.hero-images-list h3 {
    margin-bottom: 0.5rem;
    color: #333;
}

.help-text {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.hero-images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.hero-image-item {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    cursor: move;
    transition: all 0.3s;
}

.hero-image-item:hover {
    border-color: #e91e63;
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.2);
}

.hero-image-item.dragging {
    opacity: 0.5;
    transform: rotate(5deg);
}

.hero-image-thumb {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.hero-image-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-order-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
}

.hero-image-actions {
    padding: 1rem;
}

.hero-status {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.hero-status.active {
    background: #e8f5e9;
    color: #2e7d32;
}

.hero-status.inactive {
    background: #ffebee;
    color: #c62828;
}

.action-buttons {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

.btn-enable {
    background: #4caf50;
    color: white;
    border: none;
}

.btn-enable:hover {
    background: #45a049;
}

.btn-delete {
    background: #f44336;
    color: white;
    border: none;
}

.btn-delete:hover {
    background: #da190b;
}

/* Statistics Styles */
.stats-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 5px 20px rgba(233, 30, 99, 0.3);
}

.stat-icon {
    font-size: 3rem;
}

.stat-info h3 {
    font-size: 2.5rem;
    margin-bottom: 0.3rem;
}

.stat-info p {
    opacity: 0.9;
    font-size: 1rem;
}

.stats-section {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.stats-section h3 {
    margin-bottom: 1.5rem;
    color: #333;
}

.chart-container {
    height: 300px;
    position: relative;
}

.category-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.category-stat-bar {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.category-stat-label {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    color: #333;
}

.category-stat-count {
    color: #666;
    font-weight: normal;
}

.category-stat-progress {
    height: 25px;
    background: #f0f0f0;
    border-radius: 12px;
    overflow: hidden;
}

.category-stat-fill {
    height: 100%;
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    transition: width 0.5s ease;
    border-radius: 12px;
}

.products-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.product-stat-card {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s;
}

.product-stat-card:hover {
    border-color: #e91e63;
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.2);
}

.product-stat-image {
    height: 200px;
    overflow: hidden;
    background: #f0f0f0;
}

.product-stat-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-stat-info {
    padding: 1rem;
}

.product-stat-info h4 {
    margin-bottom: 0.5rem;
    color: #333;
}

.product-stat-price {
    color: #e91e63;
    font-weight: bold;
    margin-bottom: 0.7rem;
}

.product-stat-clicks {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.click-badge {
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.recent-activity {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f9f9f9;
    border-radius: 10px;
    border-left: 4px solid #e91e63;
}

.activity-icon {
    font-size: 1.5rem;
}

.activity-details {
    flex: 1;
}

.activity-product {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.2rem;
}

.activity-time {
    color: #666;
    font-size: 0.85rem;
}

/* Hero Text Management */
.hero-text-section {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.hero-text-section h3 {
    margin-bottom: 0.5rem;
    color: #333;
}

.hero-text-form {
    margin-top: 1.5rem;
}

.hero-text-form .form-group {
    margin-bottom: 1.5rem;
}

.hero-text-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 600;
}

.hero-text-form input[type="text"],
.hero-text-form textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.hero-text-form input[type="text"]:focus,
.hero-text-form textarea:focus {
    outline: none;
    border-color: #e91e63;
}

.hero-text-form small {
    display: block;
    margin-top: 0.3rem;
    color: #666;
    font-size: 0.85rem;
}

.hero-preview {
    margin-top: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, #e91e63 0%, #9c27b0 100%);
    border-radius: 15px;
}

.hero-preview h4 {
    color: white;
    margin-bottom: 1rem;
}

.preview-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.preview-heading {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 700;
}

.preview-subheading {
    color: white;
    font-size: 1.2rem;
    opacity: 0.95;
    line-height: 1.6;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #e91e63 0%, #9c27b0 100%);
    padding: 4rem 0 3rem;
    text-align: center;
    color: white;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.95;
}

/* About Page Styles */
.about-section {
    padding: 5rem 0;
    background: white;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-image, .style-image {
    flex: 1;
}

.image-placeholder {
    background: linear-gradient(135deg, #fce4ec 0%, #f3e5f5 100%);
    border-radius: 20px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    padding: 3rem;
}

.image-placeholder span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.image-placeholder img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

.about-text, .style-text {
    flex: 1;
}

.about-text h2, .style-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-text p, .style-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.offerings-section, .how-to-shop-section, .promise-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.offerings-grid, .steps-grid, .promise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.offering-card, .step-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.offering-card:hover, .step-card:hover {
    transform: translateY(-5px);
}

.offering-icon, .step-number {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.offering-card h3, .step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.offering-card p, .step-card p {
    color: #666;
    line-height: 1.7;
}

.style-section {
    padding: 5rem 0;
    background: white;
}

.style-content-reverse {
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-direction: row-reverse;
}

.style-highlights {
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #333;
}

.highlight-icon {
    color: #e91e63;
    font-weight: bold;
    font-size: 1.3rem;
}

.shop-note {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #fce4ec 0%, #f3e5f5 100%);
    border-radius: 15px;
    text-align: center;
}

.shop-note p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
}

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

.promise-item {
    text-align: center;
}

.promise-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.promise-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
    color: #333;
}

.promise-item p {
    color: #666;
}

.about-cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #e91e63 0%, #9c27b0 100%);
    text-align: center;
    color: white;
}

.about-cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.about-cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn-xlarge {
    font-size: 1.3rem;
    padding: 1.3rem 3rem;
}

/* Contact Page Styles */
.contact-main-section {
    padding: 4rem 0;
    background: white;
}

.contact-highlight {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.contact-highlight h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.contact-highlight p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.contact-options-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.contact-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-option-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.contact-option-card:hover {
    transform: translateY(-5px);
}

.option-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.contact-option-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #333;
}

.contact-option-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.option-link {
    color: #e91e63;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.option-link:hover {
    color: #9c27b0;
}

.business-info-section {
    padding: 5rem 0;
    background: white;
}

.business-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.info-card {
    text-align: center;
    padding: 2rem;
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
    color: #333;
}

.info-card p {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.info-subtext {
    color: #999 !important;
    font-size: 0.95rem !important;
}

.social-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #fce4ec 0%, #f3e5f5 100%);
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
    color: #333;
    transition: transform 0.3s;
    position: relative;
}

.social-link:not(.disabled):hover {
    transform: scale(1.1);
}

.social-link.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.social-link-active:hover {
    transform: scale(1.1);
}

.social-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
}

.social-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.social-instagram {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.social-facebook {
    background: #1877f2;
}

.social-tiktok {
    background: #000000;
}

.social-whatsapp {
    background: #25d366;
}

.social-icon img[src*="instagram"],
.social-icon img[src*="facebook"],
.social-icon img[src*="whatsapp"],
.social-icon img[src*="tiktok"] {
    filter: brightness(0) invert(1);
}

.social-link span {
    font-weight: 600;
}

.coming-soon-badge,
.active-badge {
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-weight: 600;
    margin-top: -0.3rem;
}

.coming-soon-badge {
    background: #ffebee;
    color: #c62828;
}

.active-badge {
    background: #e8f5e9;
    color: #2e7d32;
}

/* Search Bar in Category Section */
.search-bar-section {
    display: flex;
    justify-content: center;
    margin: 2rem 0 1.5rem;
}

.search-bar-section .search-input {
    width: 100%;
    max-width: 600px;
    padding: 0.9rem 1.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.3s;
}

.search-bar-section .search-input:focus {
    outline: none;
    border-color: #e91e63;
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}

/* Category Management Styles */
.category-add-section {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.category-add-section h3 {
    margin-bottom: 1rem;
    color: #333;
}

.category-form {
    margin-top: 1rem;
}

.form-group-inline {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.form-group-inline input[type="text"] {
    flex: 1;
    padding: 0.9rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group-inline input[type="text"]:focus {
    outline: none;
    border-color: #e91e63;
}

.categories-list-section {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.categories-list-section h3 {
    margin-bottom: 1.5rem;
    color: #333;
}

.categories-table {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.category-row {
    padding: 1.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    transition: all 0.3s;
}

.category-row:hover {
    border-color: #e91e63;
    box-shadow: 0 3px 10px rgba(233, 30, 99, 0.1);
}

.category-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.category-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
}

.category-count {
    color: #666;
    font-size: 0.9rem;
    background: #f0f0f0;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
}

.category-actions {
    display: flex;
    gap: 0.5rem;
}

.category-edit-form {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
}

/* Responsive */
@media (max-width: 768px) {
    /* Navbar Mobile */
    .navbar {
        padding: 1rem 0;
    }

    .navbar .container {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .logo-container {
        flex: 1;
        min-width: 0;
    }
    
    .logo-image {
        height: 35px;
    }
    
    .logo {
        font-size: 1.1rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .nav-links {
        gap: 1rem;
        font-size: 0.85rem;
    }

    .nav-link {
        padding: 0.3rem 0;
    }

    /* Hero Section Mobile */
    .hero {
        padding: 2rem 0;
    }

    .hero-content {
        flex-direction: column;
        gap: 2rem;
    }

    .hero-text {
        width: 100%;
        order: 1;
    }

    .hero-image {
        width: 100%;
        order: 2;
    }
    
    .hero-text h2 {
        font-size: 1.8rem;
        line-height: 1.3;
        font-family: 'Playfair Display', serif;
    }
    
    .hero-text p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }

    .slideshow-container {
        height: 300px;
        width: 100%;
        display: block;
    }

    .slideshow-slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 1s ease-in-out;
    }

    .slideshow-slide.active {
        opacity: 1;
        z-index: 1;
    }

    .slideshow-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
    
    .slideshow-indicators {
        bottom: 10px;
        gap: 6px;
        z-index: 10;
    }
    
    .indicator {
        width: 8px;
        height: 8px;
    }
    
    .indicator.active {
        width: 20px;
    }

    /* Category Section Mobile */
    .categories-section {
        padding: 2rem 0 1rem;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
        margin-top: -0.8rem;
        margin-bottom: 2rem;
    }

    .search-bar-section {
        margin: 1.5rem 0 1rem;
    }

    .search-bar-section .search-input {
        font-size: 0.9rem;
        padding: 0.7rem 1rem;
    }

    .category-filters {
        gap: 0.7rem;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 0.5rem;
        -webkit-overflow-scrolling: touch;
    }

    .category-btn {
        padding: 0.6rem 1.3rem;
        font-size: 0.85rem;
        white-space: nowrap;
    }

    /* Products Grid Mobile */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        grid-auto-flow: row;
        gap: 1rem;
        overflow-x: visible;
        overflow-y: visible;
    }

    .products-grid-wrapper {
        overflow: visible;
    }

    .product-card {
        border-radius: 12px;
        width: 100%;
    }

    .product-image {
        height: 200px;
        border-radius: 12px 12px 0 0;
    }

    .product-info {
        padding: 0.8rem;
    }

    .product-name {
        font-size: 0.9rem;
        margin-bottom: 0.2rem;
    }

    .product-size {
        font-size: 0.75rem;
        margin-bottom: 0.2rem;
    }

    .product-price {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .btn-whatsapp {
        padding: 0.6rem;
        font-size: 0.8rem;
    }

    .whatsapp-icon {
        font-size: 1rem;
    }

    /* Trust Section Mobile */
    .trust-section {
        padding: 3rem 0;
    }

    .trust-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .trust-item {
        padding: 1.5rem;
    }

    .trust-icon {
        font-size: 2.5rem;
        margin-bottom: 0.7rem;
    }

    .trust-item h4 {
        font-size: 1.1rem;
    }

    .trust-item p {
        font-size: 0.9rem;
    }

    /* Contact Section Mobile */
    .contact-section {
        padding: 3rem 0;
    }

    .btn-large {
        font-size: 1rem;
        padding: 0.9rem 2rem;
    }

    /* Footer Mobile */
    .footer {
        padding: 2rem 0;
        font-size: 0.85rem;
    }

    .footer p {
        margin: 0.3rem 0;
    }

    /* About Page Mobile */
    .page-header {
        padding: 2.5rem 0 2rem;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    .about-section,
    .style-section,
    .offerings-section,
    .how-to-shop-section,
    .promise-section {
        padding: 3rem 0;
    }

    .about-content,
    .style-content-reverse {
        flex-direction: column;
        gap: 2rem;
    }
    
    .about-text h2,
    .style-text h2 {
        font-size: 1.8rem;
    }

    .about-text p,
    .style-text p {
        font-size: 1rem;
    }

    .image-placeholder {
        height: 250px;
        padding: 1.5rem;
        font-size: 3rem;
    }

    .offerings-grid,
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .offering-card,
    .step-card {
        padding: 1.8rem;
    }

    .offering-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .offering-card h3,
    .step-card h3 {
        font-size: 1.2rem;
    }

    .offering-card p,
    .step-card p {
        font-size: 0.95rem;
    }

    .shop-note {
        margin-top: 2rem;
        padding: 1.5rem;
    }

    .shop-note p {
        font-size: 0.95rem;
    }

    .promise-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .promise-icon {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .promise-item h4 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .promise-item p {
        font-size: 0.85rem;
    }

    .about-cta-section,
    .contact-final-cta {
        padding: 3rem 0;
    }

    .about-cta-section h2,
    .contact-final-cta h2 {
        font-size: 1.8rem;
    }

    .about-cta-section p,
    .contact-final-cta p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-xlarge {
        font-size: 1.1rem;
        padding: 1rem 2rem;
        width: 100%;
    }

    /* Contact Page Mobile */
    .contact-main-section {
        padding: 2.5rem 0;
    }

    .contact-highlight h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .contact-highlight p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .contact-options-section {
        padding: 3rem 0;
    }

    .contact-options-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .contact-option-card {
        padding: 1.8rem;
    }

    .option-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .contact-option-card h3 {
        font-size: 1.2rem;
    }

    .contact-option-card p {
        font-size: 0.95rem;
    }

    .business-info-section {
        padding: 3rem 0;
    }

    .business-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .info-card {
        padding: 1.5rem;
    }

    .info-icon {
        font-size: 2.5rem;
    }

    .info-card h3 {
        font-size: 1.1rem;
    }

    .info-card p {
        font-size: 1rem;
    }

    .social-section {
        padding: 3rem 0;
    }

    .social-links {
        gap: 1.5rem;
    }

    .social-icon {
        width: 60px;
        height: 60px;
    }

    .social-icon img {
        width: 30px;
        height: 30px;
    }

    .faq-section {
        padding: 3rem 0;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .faq-item {
        padding: 1.5rem;
    }

    .faq-item h4 {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }

    .faq-item p {
        font-size: 0.9rem;
    }

    /* Admin Mobile */
    .admin-header {
        padding: 1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .admin-logo-image {
        height: 25px;
    }

    .admin-header h1 {
        font-size: 1.1rem;
    }

    .admin-tabs {
        padding: 0 1rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .tab {
        padding: 0.8rem 1.2rem;
        font-size: 0.85rem;
        white-space: nowrap;
    }

    .admin-content {
        padding: 1rem;
    }

    .product-form {
        padding: 1.5rem;
    }

    .products-list {
        overflow-x: auto;
    }

    .product-row {
        padding: 1rem;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .product-image-thumb {
        width: 60px;
        height: 60px;
    }

    .product-actions {
        width: 100%;
        justify-content: space-between;
    }

    /* Hero Images Management Mobile */
    .hero-images-grid {
        grid-template-columns: 1fr;
    }

    /* Statistics Mobile */
    .stats-summary {
        grid-template-columns: 1fr;
    }

    .products-stats-grid {
        grid-template-columns: 1fr;
    }

    .chart-container {
        height: 250px;
    }
}

/* Extra Small Mobile (320px - 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .logo {
        font-size: 0.95rem;
    }

    .nav-links {
        gap: 0.7rem;
        font-size: 0.75rem;
    }

    .hero-text h2 {
        font-size: 1.5rem;
        font-family: 'Playfair Display', serif;
    }

    .slideshow-container {
        height: 250px;
    }

    /* ...existing code... */
}

/* Tablet Landscape (768px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }

    .hero-text h2 {
        font-size: 2.3rem;
    }

    .trust-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .offerings-grid,
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Image Modal/Lightbox */
.image-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    padding: 20px;
}

.image-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    animation: zoomIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    background: rgba(233, 30, 99, 0.8);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    line-height: 1;
    user-select: none;
}

.modal-close:hover {
    background: #e91e63;
    transform: rotate(90deg);
}

.modal-product-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 70%, transparent 100%);
    color: white;
    padding: 3rem 2rem 2rem;
    border-radius: 0 0 15px 15px;
}

.modal-product-info h3 {
    font-size: 1.8rem;
    margin-bottom: 0.7rem;
    font-weight: 600;
}

.modal-product-info p {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    opacity: 0.9;
}

.modal-whatsapp-btn {
    background: #25d366;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.modal-whatsapp-btn:hover {
    background: #1fa855;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

@keyframes fadeIn {
    from { 
        opacity: 0; 
    }
    to { 
        opacity: 1; 
    }
}

@keyframes zoomIn {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}
