/* ==========================================================================
   IRON GEAR - PREMIUM CSS DESIGN SYSTEM
   ========================================================================== */

/* Custom Reset & Variables */
:root {
    --bg-dark-900: #0a0a0a;
    --bg-dark-800: #121212;
    --bg-dark-700: #1a1a1a;
    --bg-dark-600: #242424;
    --bg-dark-500: #2d2d2d;
    
    --primary: #ff5722;
    --primary-hover: #e64a19;
    --primary-light: #ff7043;
    --primary-alpha: rgba(255, 87, 34, 0.15);
    
    --text-white: #ffffff;
    --text-muted: #a0aec0;
    --text-dimmed: #718096;
    
    --green-whatsapp: #25d366;
    --green-whatsapp-dark: #128c7e;
    
    --border-color: #2d2d2d;
    --border-focus: #ff5722;
    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.5);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.6);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.8);
    --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    
    --container-width: 1200px;
    --header-height: 125px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    background-color: var(--bg-dark-800);
    color: var(--text-white);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    background: none;
    border: none;
    color: inherit;
}

button {
    cursor: pointer;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark-900);
}
::-webkit-scrollbar-thumb {
    background: var(--bg-dark-600);
    border-radius: 5px;
    border: 2px solid var(--bg-dark-900);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* ==========================================================================
   REUSABLE UTILITIES & TYPOGRAPHY
   ========================================================================== */

.section-container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 80px 20px;
}

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

.section-subtitle {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

/* Button Reset & Common Styles */
.btn-primary {
    background-color: var(--primary);
    color: var(--text-white);
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.hidden {
    display: none !important;
}

/* ==========================================================================
   HEADER ESTRATÉGICO
   ========================================================================== */

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--shadow-lg);
    background-color: var(--bg-dark-900);
}

.header-container {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Row: Branding and Search */
.header-top {
    height: 70px;
    border-bottom: 1px solid var(--bg-dark-700);
    display: flex;
    align-items: center;
    background-color: var(--bg-dark-900);
}

.header-top .header-container {
    justify-content: space-between;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.logo-bold-orange {
    color: var(--primary);
}

.logo-light-white {
    color: var(--text-white);
}

/* Search Bar */
.search-bar-container {
    flex: 0 1 550px;
    margin: 0 20px;
}

.search-bar-form {
    display: flex;
    background-color: var(--bg-dark-700);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
    height: 40px;
    transition: var(--transition-fast);
}

.search-bar-form:focus-within {
    border-color: var(--border-focus);
    box-shadow: 0 0 0 1px var(--primary-alpha);
}

.search-select {
    padding: 0 12px;
    font-size: 0.85rem;
    color: var(--text-muted);
    border-right: 1px solid var(--border-color);
    cursor: pointer;
    background-color: var(--bg-dark-700);
}

.search-select:focus {
    outline: none;
    color: var(--text-white);
}

.search-input {
    flex-grow: 1;
    padding: 0 15px;
    font-size: 0.85rem;
    color: var(--text-white);
}

.search-input::placeholder {
    color: var(--text-dimmed);
}

.search-input:focus {
    outline: none;
}

.search-btn {
    background-color: var(--primary);
    color: var(--text-white);
    width: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-fast);
}

.search-btn:hover {
    background-color: var(--primary-hover);
}

/* Header Actions: User Profile and Cart */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.action-btn {
    color: var(--text-white);
    font-size: 1.25rem;
    padding: 8px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: var(--transition-fast);
    background-color: var(--bg-dark-700);
    width: 40px;
    height: 40px;
}

.action-btn:hover {
    color: var(--primary);
    background-color: var(--bg-dark-600);
}

.cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background-color: var(--primary);
    color: var(--text-white);
    font-size: 0.7rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--bg-dark-900);
}

/* Bottom Row: Navigation Menu */
.header-bottom {
    height: 55px;
    background-color: var(--bg-dark-900);
    display: flex;
    align-items: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.header-bottom .header-container {
    justify-content: space-between;
}

.nav-menu {
    height: 100%;
}

.mobile-menu-btn {
    display: none;
    color: var(--text-white);
    font-size: 1.5rem;
    padding: 10px;
}

.nav-list {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-list > li {
    position: relative;
    height: 100%;
}

.nav-link {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 15px;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.nav-link i {
    font-size: 0.65rem;
    margin-left: 6px;
    transition: var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

.nav-list > li:hover > .nav-link i {
    transform: rotate(180deg);
}

/* Navigation Dropdown */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--bg-dark-900);
    border: 1px solid var(--bg-dark-700);
    border-top: 2px solid var(--primary);
    min-width: 180px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-normal);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    border-bottom: 1px solid var(--bg-dark-700);
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu a {
    display: block;
    padding: 12px 18px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
}

.dropdown-menu a:hover {
    background-color: var(--bg-dark-700);
    color: var(--primary);
    padding-left: 22px;
}

/* CTA Header Button */
.cta-header-btn {
    background-color: var(--primary);
    color: var(--text-white);
    padding: 8px 20px;
    border-radius: 20px;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.cta-header-btn:hover {
    background-color: var(--primary-hover);
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
}

/* Body spacing adjustments due to fixed header */
main {
    margin-top: var(--header-height);
}

/* ==========================================================================
   HERO SECTION (CAROUSEL)
   ========================================================================== */

.hero-section {
    position: relative;
    height: calc(90vh - var(--header-height));
    min-height: 480px;
    background-color: var(--bg-dark-900);
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
    display: flex;
    align-items: center;
    z-index: 1;
}

.carousel-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-content {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
    text-align: left;
    transform: translateY(20px);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.carousel-slide.active .hero-content {
    transform: translateY(0);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: 1px;
    margin-bottom: 30px;
    text-shadow: 0 4px 12px rgba(0,0,0,0.6);
}

.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: var(--primary);
    color: var(--text-white);
    padding: 16px 36px;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.hero-cta-btn i {
    font-size: 1rem;
    transition: var(--transition-fast);
}

.hero-cta-btn:hover {
    background-color: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.hero-cta-btn:hover i {
    transform: translateX(3px);
}

/* Slider Controls */
.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    color: var(--text-white);
    font-size: 1.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-fast);
    z-index: 10;
}

.carousel-control:hover {
    background-color: var(--primary);
    border-color: var(--primary);
}

.carousel-control.prev {
    left: 25px;
}

.carousel-control.next {
    right: 25px;
}

/* Carousel Pagination Dots */
.carousel-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.35);
    border: 1px solid rgba(255,255,255,0.1);
    cursor: pointer;
    transition: var(--transition-fast);
}

.dot.active {
    background-color: var(--text-white);
    transform: scale(1.2);
    box-shadow: 0 0 8px rgba(255,255,255,0.6);
}

/* ==========================================================================
   SOBRE NOSOTROS
   ========================================================================== */

.about-section {
    background-color: var(--bg-dark-800);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text-content .section-subtitle {
    text-align: left;
}

.about-text-content .section-title {
    margin-bottom: 25px;
    text-align: left;
}

.about-description {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.about-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--primary);
    color: var(--text-white);
    padding: 14px 30px;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.about-cta-btn:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.about-image-container {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--bg-dark-700);
}

.about-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.about-image-container:hover .about-image {
    transform: scale(1.03);
}

/* ==========================================================================
   PRODUCTOS SECTION
   ========================================================================== */

.products-section {
    background-color: var(--bg-dark-900);
    border-top: 1px solid var(--bg-dark-700);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background-color: var(--bg-dark-700);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-alpha);
    box-shadow: var(--shadow-lg);
}

.product-image-container {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: var(--bg-dark-900);
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--bg-dark-900);
    color: var(--text-white);
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 2px;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255,255,255,0.15);
    z-index: 2;
}

.product-tag.hot {
    background-color: var(--primary);
    border-color: var(--primary);
}

.product-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.product-rating {
    color: #ffb300;
    font-size: 0.75rem;
    margin-bottom: 15px;
}

.product-desc {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.5;
    margin-bottom: 25px;
    flex-grow: 1;
}

.product-price-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
    margin-top: auto;
}

.product-price {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-light);
}

.product-btn {
    background-color: var(--primary);
    color: var(--text-white);
    padding: 8px 18px;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: var(--transition-fast);
}

.product-btn:hover {
    background-color: var(--primary-hover);
    transform: translateY(-1px);
}

.no-products-found {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background-color: var(--bg-dark-700);
    border: 1px dashed var(--border-color);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    box-shadow: var(--shadow-sm);
}

.no-products-found i {
    font-size: 3.5rem;
    color: var(--text-dimmed);
    margin-bottom: 5px;
    animation: pulse 2s infinite ease-in-out;
}

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

.no-products-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-white);
    text-transform: uppercase;
}

.no-products-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 400px;
    margin: 0 auto 10px;
}

.reset-filter-btn {
    background-color: var(--primary);
    color: var(--text-white);
    padding: 10px 22px;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.reset-filter-btn:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

/* ==========================================================================
   PRUEBA SOCIAL (TESTIMONIOS)
   ========================================================================== */

.testimonials-section {
    background-color: var(--bg-dark-900);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: var(--bg-dark-700);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-alpha);
    box-shadow: var(--shadow-lg);
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
}

.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
}

.user-name {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
}

.user-role {
    color: var(--text-dimmed);
    font-size: 0.75rem;
    display: block;
}

.star-rating {
    color: #ffb300;
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.testimonial-text {
    color: var(--text-muted);
    font-size: 0.88rem;
    font-style: italic;
    flex-grow: 1;
    margin-bottom: 20px;
    line-height: 1.5;
}

.testimonial-product-photo {
    width: 100%;
    height: 160px;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 15px;
    border: 1px solid var(--bg-dark-600);
}

.testimonial-product-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

.testimonial-card:hover .testimonial-product-photo img {
    transform: scale(1.05);
}

.testimonial-signature {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    text-align: right;
    display: block;
}

/* ==========================================================================
   VENTAJAS COMPETITIVAS
   ========================================================================== */

.advantages-section {
    background-color: var(--bg-dark-800);
    border-top: 1px solid var(--bg-dark-700);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.advantage-card {
    background-color: var(--bg-dark-700);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.advantage-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.advantage-icon-container {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background-color: var(--bg-dark-600);
    color: var(--primary);
    font-size: 1.75rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 25px;
    transition: var(--transition-normal);
    border: 1px solid var(--border-color);
}

.advantage-card:hover .advantage-icon-container {
    background-color: var(--primary);
    color: var(--text-white);
    transform: rotateY(180deg);
}

.advantage-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.advantage-description {
    color: var(--text-muted);
    font-size: 0.82rem;
    line-height: 1.5;
}

/* ==========================================================================
   PROCESO SECTION
   ========================================================================== */

.process-section {
    background-color: var(--bg-dark-900);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

/* Horizontal Connector Line */
.process-steps::before {
    content: '';
    position: absolute;
    top: 55px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(to right, var(--bg-dark-700), var(--primary), var(--bg-dark-700));
    z-index: 1;
}

.step-card {
    background-color: var(--bg-dark-700);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.step-card:hover {
    border-color: var(--primary-alpha);
    box-shadow: var(--shadow-md);
}

.step-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary);
    color: var(--text-white);
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 0.85rem;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--bg-dark-700);
}

.step-icon {
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-bottom: 15px;
    margin-top: 5px;
    transition: var(--transition-fast);
}

.step-card:hover .step-icon {
    color: var(--primary);
    transform: scale(1.1);
}

.step-title {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    color: var(--text-white);
}

.step-description {
    color: var(--text-muted);
    font-size: 0.78rem;
    line-height: 1.45;
}

/* ==========================================================================
   FAQ SECTION (ACCORDION)
   ========================================================================== */

.faq-section {
    background-color: var(--bg-dark-800);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

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

.faq-item {
    background-color: var(--bg-dark-700);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
    transition: var(--transition-fast);
}

.faq-item:hover {
    border-color: var(--bg-dark-500);
}

.faq-item.active {
    border-color: var(--primary-alpha);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-white);
    background-color: var(--bg-dark-700);
    transition: var(--transition-fast);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question i {
    font-size: 0.8rem;
    color: var(--text-dimmed);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
    background-color: rgba(0, 0, 0, 0.15);
}

.faq-item.active .faq-answer {
    max-height: 250px; /* arbitrary height to slide down */
    transition: max-height 0.4s cubic-bezier(0.86, 0, 0.07, 1);
}

.faq-answer p {
    padding: 0 25px 20px;
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ==========================================================================
   CONVERSIÓN (CONTACT FORM)
   ========================================================================== */

.contact-section {
    background-color: var(--bg-dark-900);
    border-top: 1px solid var(--bg-dark-700);
}

.contact-form-container {
    max-width: 750px;
    margin: 0 auto;
    background-color: var(--bg-dark-700);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 50px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--primary);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: opacity var(--transition-normal);
}

.form-row {
    display: flex;
    gap: 20px;
    width: 100%;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.col-6 {
    width: 50%;
}

.form-group.col-12 {
    width: 100%;
}

.form-group label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input, .form-group textarea {
    background-color: var(--bg-dark-800);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 12px 16px;
    font-size: 0.88rem;
    color: var(--text-white);
    transition: var(--transition-fast);
    width: 100%;
}

.form-group input::placeholder, .form-group textarea::placeholder {
    color: var(--text-dimmed);
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--border-focus);
    background-color: var(--bg-dark-900);
    box-shadow: 0 0 0 1px var(--primary-alpha);
}

.form-group textarea {
    resize: vertical;
}

.form-submit-container {
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--primary);
    color: var(--text-white);
    padding: 14px 35px;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.submit-btn:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.submit-btn i {
    font-size: 0.85rem;
    transition: var(--transition-fast);
}

.submit-btn:hover i {
    transform: translate(2px, -2px);
}

/* Form Feedback */
.form-feedback {
    text-align: center;
    padding: 20px 0;
    animation: fadeIn 0.5s ease;
}

.feedback-icon {
    font-size: 4rem;
    color: #4caf50;
    margin-bottom: 20px;
}

.feedback-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.feedback-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    max-width: 500px;
    margin: 0 auto 25px;
}

.feedback-reset-btn {
    background-color: var(--bg-dark-600);
    border: 1px solid var(--border-color);
    color: var(--text-white);
    padding: 10px 24px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: var(--transition-fast);
}

.feedback-reset-btn:hover {
    background-color: var(--bg-dark-500);
    border-color: var(--text-muted);
}

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

/* ==========================================================================
   FOOTER MINIMALISTA
   ========================================================================== */

.main-footer {
    background-color: var(--bg-dark-900);
    border-top: 1px solid var(--bg-dark-700);
}

.footer-container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 70px 20px 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col-title {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
    color: var(--text-white);
}

.footer-col-title.brand-logo {
    font-size: 1.5rem;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.brand-desc {
    color: var(--text-muted);
    font-size: 0.82rem;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.82rem;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-info li {
    font-size: 0.82rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact-info li i {
    color: var(--primary);
    font-size: 0.85rem;
    width: 15px;
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--bg-dark-700);
    color: var(--text-muted);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.9rem;
    border: 1px solid var(--border-color);
}

.social-icons a:hover {
    background-color: var(--primary);
    color: var(--text-white);
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* Footer Bottom Bar */
.footer-bottom {
    border-top: 1px solid var(--bg-dark-700);
    padding-top: 25px;
    text-align: center;
}

.copyright-text {
    color: var(--text-dimmed);
    font-size: 0.78rem;
}

.copyright-text strong {
    color: var(--text-muted);
}

/* ==========================================================================
   WHATSAPP WIDGET
   ========================================================================== */

.whatsapp-widget-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 990;
    font-family: var(--font-body);
}

.whatsapp-floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--green-whatsapp);
    color: var(--text-white);
    font-size: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    position: relative;
    transition: var(--transition-normal);
}

.whatsapp-floating-btn:hover {
    background-color: var(--green-whatsapp-dark);
    transform: scale(1.08);
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--bg-dark-900);
    color: var(--text-white);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 6px 15px;
    border-radius: 20px;
    white-space: nowrap;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    pointer-events: none;
    opacity: 0;
    transform: translateY(-50%) translateX(10px);
    transition: var(--transition-normal);
}

.whatsapp-floating-btn:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* WhatsApp Chat Window Box */
.whatsapp-chat-box {
    position: absolute;
    bottom: 75px;
    right: 0;
    width: 320px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    background-color: var(--bg-dark-700);
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.whatsapp-chat-box.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.chat-header {
    background-color: var(--green-whatsapp-dark);
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.chat-avatar {
    position: relative;
    width: 40px;
    height: 40px;
}

.chat-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.online-indicator {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--green-whatsapp);
    border: 2px solid var(--green-whatsapp-dark);
}

.chat-agent-info {
    display: flex;
    flex-direction: column;
}

.agent-name {
    font-size: 0.85rem;
    font-weight: 700;
}

.agent-status {
    font-size: 0.68rem;
    color: rgba(255,255,255,0.85);
}

.close-chat-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.close-chat-btn:hover {
    color: var(--text-white);
}

.chat-body {
    padding: 20px;
    background-color: var(--bg-dark-800);
}

.chat-message-incoming {
    background-color: var(--bg-dark-700);
    border: 1px solid var(--border-color);
    padding: 12px 16px;
    border-radius: 0 10px 10px 10px;
    font-size: 0.78rem;
    line-height: 1.5;
    color: var(--text-muted);
}

.chat-footer {
    padding: 15px;
    background-color: var(--bg-dark-700);
    display: flex;
    justify-content: center;
}

.start-chat-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background-color: var(--green-whatsapp);
    color: var(--text-white);
    padding: 10px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.start-chat-btn:hover {
    background-color: var(--green-whatsapp-dark);
    transform: translateY(-1px);
}

/* ==========================================================================
   ADMIN PANEL MODAL (GLASSMORPHISM)
   ========================================================================== */

.admin-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.admin-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.admin-modal-container {
    width: 90%;
    max-width: 1000px;
    max-height: 85vh;
    background: rgba(18, 18, 18, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    box-shadow: var(--shadow-glass);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.admin-modal-overlay.active .admin-modal-container {
    transform: scale(1);
}

/* Modal Header */
.admin-modal-header {
    padding: 20px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.3);
}

.admin-modal-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.admin-modal-close {
    color: var(--text-muted);
    font-size: 1.25rem;
    transition: var(--transition-fast);
}

.admin-modal-close:hover {
    color: var(--text-white);
}

/* Modal Body */
.admin-modal-body {
    padding: 30px;
    overflow-y: auto;
    flex-grow: 1;
}

/* Stats Cards */
.admin-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-icon {
    width: 45px;
    height: 45px;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.25rem;
}

.stat-card.total .stat-icon {
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--text-white);
}

.stat-card.pending .stat-icon {
    background-color: rgba(255, 179, 0, 0.15);
    color: #ffb300;
}

.stat-card.resolved .stat-icon {
    background-color: rgba(76, 175, 80, 0.15);
    color: #4caf50;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

/* Table Controls */
.admin-table-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.table-section-title {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.table-actions {
    display: flex;
    gap: 10px;
}

.table-btn {
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition-fast);
}

.clear-all-btn {
    background-color: rgba(244, 67, 54, 0.08);
    color: #f44336;
    border-color: rgba(244, 67, 54, 0.15);
}

.clear-all-btn:hover {
    background-color: rgba(244, 67, 54, 0.15);
}

.export-btn {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-white);
}

.export-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Data Table */
.admin-table-container {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.15);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.8rem;
}

.admin-table th {
    background-color: rgba(0, 0, 0, 0.3);
    color: var(--text-muted);
    font-weight: 600;
    padding: 12px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-table td {
    padding: 14px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    vertical-align: middle;
    color: var(--text-muted);
}

.admin-table tbody tr:last-child td {
    border-bottom: none;
}

.admin-table tbody tr:hover td {
    background-color: rgba(255, 255, 255, 0.02);
    color: var(--text-white);
}

.empty-row {
    text-align: center;
    font-style: italic;
}

.empty-row td {
    padding: 40px !important;
}

/* State Badges */
.status-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.68rem;
    font-weight: 700;
}

.status-badge.pending {
    background-color: rgba(255, 179, 0, 0.15);
    color: #ffb300;
}

.status-badge.resolved {
    background-color: rgba(76, 175, 80, 0.15);
    color: #4caf50;
}

/* Row Actions */
.row-actions {
    display: flex;
    gap: 8px;
}

.action-icon-btn {
    width: 28px;
    height: 28px;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.78rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-fast);
}

.action-icon-btn.resolve {
    color: #4caf50;
    background-color: rgba(76, 175, 80, 0.08);
}

.action-icon-btn.resolve:hover {
    background-color: rgba(76, 175, 80, 0.18);
}

.action-icon-btn.delete {
    color: #f44336;
    background-color: rgba(244, 67, 54, 0.08);
}

.action-icon-btn.delete:hover {
    background-color: rgba(244, 67, 54, 0.18);
}

/* Modal Footer */
.admin-modal-footer {
    padding: 15px 30px;
    background-color: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-footer-note {
    font-size: 0.68rem;
    color: var(--text-dimmed);
    text-align: center;
}

.admin-footer-note code {
    background-color: rgba(255, 255, 255, 0.08);
    padding: 1px 4px;
    border-radius: 3px;
    color: var(--text-white);
}

/* ==========================================================================
   RESPONSIVENESS (MEDIA QUERIES)
   ========================================================================== */

/* Large screens and desktop spacing */
@media (max-width: 1200px) {
    .section-container {
        padding: 60px 40px;
    }
}

/* Tablets and medium screens */
@media (max-width: 992px) {
    :root {
        --header-height: 125px;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .search-bar-container {
        flex: 0 1 400px;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image {
        height: 320px;
    }
    
    .products-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .testimonials-grid > .testimonial-card:last-child {
        grid-column: span 2;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .process-steps {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .process-steps::before {
        display: none; /* Hide connector on mobile grid layout */
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1.5fr;
        gap: 30px;
    }
    
    .brand-col {
        grid-column: span 3;
    }
    
    .admin-stats-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    :root {
        --header-height: 110px;
    }
    
    /* Sticky Header Adjustments */
    .header-top {
        height: 60px;
    }
    
    .search-bar-container {
        display: none; /* Hide search bar on smaller devices to save space */
    }
    
    .header-bottom {
        height: 50px;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-list {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: var(--bg-dark-900);
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 30px;
        gap: 0;
        overflow-y: auto;
        transition: left 0.4s ease;
        border-top: 1px solid var(--bg-dark-700);
    }
    
    .nav-list.active {
        left: 0;
    }
    
    .nav-list > li {
        width: 100%;
        height: auto;
    }
    
    .nav-link {
        padding: 15px 0;
        font-size: 0.95rem;
        width: 100%;
        border-bottom: 1px solid var(--bg-dark-700);
        justify-content: space-between;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border: none;
        border-left: 2px solid var(--primary);
        max-height: 0;
        overflow: hidden;
        margin-left: 10px;
        transform: none;
        background-color: transparent;
        transition: max-height 0.3s ease;
        width: calc(100% - 10px);
    }
    
    .dropdown.active .dropdown-menu {
        max-height: 200px;
    }
    
    .dropdown-menu a {
        padding: 10px 15px;
    }
    
    .cta-header-btn {
        display: none; /* Hide CTA button in header, user has WhatsApp/Form */
    }
    
    /* Hero Adjustments */
    .hero-section {
        height: calc(75vh - var(--header-height));
    }
    
    .hero-content {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .hero-cta-btn {
        padding: 12px 24px;
        font-size: 0.8rem;
    }
    
    .carousel-control {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .carousel-control.prev {
        left: 10px;
    }
    
    .carousel-control.next {
        right: 10px;
    }
    
    /* Layout Sections */
    .section-container {
        padding: 50px 20px;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .about-image {
        height: 240px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid > .testimonial-card:last-child {
        grid-column: span 1;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    /* Form Adjustments */
    .contact-form-container {
        padding: 30px 20px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .form-group.col-6 {
        width: 100%;
    }
    
    .submit-btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Footer Adjustments */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .brand-col {
        grid-column: span 1;
    }
    
    /* WhatsApp widget placement */
    .whatsapp-widget-container {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-chat-box {
        width: 280px;
    }
    
    /* Admin Modal */
    .admin-modal-body {
        padding: 15px;
    }
    
    .admin-table th, .admin-table td {
        padding: 10px;
        font-size: 0.72rem;
    }
    
    .row-actions {
        flex-direction: column;
        gap: 4px;
    }
}
