:root {
    --cat-yellow: #FFCC00;
    --cat-black: #1a1a1a;
    --cat-gray: #2d2d2d;
}

body {
    font-family: 'Arial', sans-serif;
    padding-top: 56px;
}

/* Navegación */
.navbar {
    background-color: var(--cat-black) !important;
    border-bottom: 3px solid var(--cat-yellow);
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

.brand-text {
    color: var(--cat-yellow) !important;
    margin-left: 10px;
}

.nav-link {
    color: white !important;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--cat-yellow) !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

/* Botones */
.btn-warning {
    background-color: var(--cat-yellow);
    border-color: var(--cat-yellow);
    color: var(--cat-black);
    font-weight: bold;
}

.btn-warning:hover {
    background-color: #e6b800;
    border-color: #e6b800;
}

.btn-outline-light:hover {
    background-color: var(--cat-yellow);
    border-color: var(--cat-yellow);
    color: var(--cat-black);
}

/* Características */
.feature-box {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.feature-box:hover {
    transform: translateY(-10px);
}

/* Títulos de sección */
.section-title {
    color: var(--cat-black);
    font-weight: bold;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background-color: var(--cat-yellow);
}

/* Redes Sociales */
.social-link {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.social-link:hover {
    color: var(--cat-yellow);
}

/* Productos */
.product-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    margin-bottom: 30px;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.product-image {
    height: 300px;
    object-fit: cover;
    background-color: #f8f9fa;
}

.product-info {
    padding: 20px;
}

.product-title {
    font-weight: bold;
    color: var(--cat-black);
    margin-bottom: 10px;
}

.product-price {
    font-size: 1.5rem;
    color: var(--cat-yellow);
    background-color: var(--cat-black);
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    margin: 15px 0;
}

/* Selector de Color */
.color-selector {
    margin: 15px 0;
}

.color-label {
    font-weight: bold;
    margin-bottom: 10px;
    display: block;
}

.color-swatches {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.color-swatch {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s;
}

.color-swatch:hover,
.color-swatch.active {
    border-color: var(--cat-black);
    transform: scale(1.2);
}

/* Selector de Talla */
.size-selector {
    margin: 15px 0;
}

.size-label {
    font-weight: bold;
    margin-bottom: 10px;
    display: block;
}

.size-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.size-btn {
    padding: 8px 15px;
    border: 2px solid var(--cat-black);
    background: white;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s;
    font-weight: bold;
}

.size-btn:hover,
.size-btn.active {
    background-color: var(--cat-yellow);
    border-color: var(--cat-yellow);
    color: var(--cat-black);
}

/* Carrito */
.cart-section {
    background-color: #f8f9fa;
    padding: 40px 0;
}

.cart-item {
    background: white;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.cart-item-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 5px;
}

/* Footer */
footer {
    background-color: var(--cat-black) !important;
}

footer h5 {
    color: var(--cat-yellow);
    margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        min-height: 60vh;
        text-align: center;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .product-image {
        height: 250px;
    }
}

/* Animaciones */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.5s ease-in;
}

/* Badge de carrito */
#cart-count {
    font-size: 0.8rem;
    padding: 5px 10px;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    line-height: 60px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: all 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
}