/* ====== ESTILOS BASE GMakers3D ====== */
body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #fdf6e3;
    color: #222;
}

.header {
    background: #ff9800;
    color: #fff;
    padding: 0;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
}
.header .logo {
    font-weight: bold;
    font-size: 1.7rem;
    letter-spacing: 1px;
    color: #fff;
    margin-left: 30px;
}
.header nav {
    display: flex;
    align-items: center;
    gap: 20px;
}
.header nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.2s;
}
.header nav a:hover {
    color: #222;
}
.header .search-box {
    margin-left: 30px;
    display: flex;
    align-items: center;
}
.header .search-box input {
    padding: 7px 12px;
    border-radius: 4px 0 0 4px;
    border: none;
    outline: none;
    font-size: 1rem;
}
.header .search-box button {
    padding: 7px 12px;
    border: none;
    background: #fff;
    color: #ff9800;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.2s;
}
.header .search-box button:hover {
    background: #ffe0b2;
}
.header .user-area {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-right: 30px;
}
.header .user-area .icon {
    font-size: 1.3rem;
    margin-right: 5px;
}
.header .user-area .dropdown {
    position: relative;
}
.header .user-area .dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background: #fff;
    min-width: 170px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    z-index: 10;
    border-radius: 0 0 6px 6px;
    overflow: hidden;
}
.header .user-area .dropdown:hover .dropdown-content {
    display: block;
}
.header .user-area .dropdown-content a {
    color: #222;
    padding: 10px 18px;
    display: block;
    text-decoration: none;
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s;
}
.header .user-area .dropdown-content a:hover {
    background: #ffe0b2;
}

.footer {
    background: #23272b;
    color: #fff;
    padding: 35px 0 20px 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 120px;
    font-size: 1rem;
    border-top: 4px solid #ff9800;
}
.footer .footer-col {
    min-width: 220px;
}
.footer .footer-col h4 {
    color: #ff9800;
    margin-bottom: 12px;
    font-size: 1.1rem;
}
.footer .footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer .footer-col ul li {
    margin-bottom: 8px;
}
.footer .footer-col ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}
.footer .footer-col ul li a:hover {
    color: #ff9800;
}
.footer .footer-col .contact-info {
    margin-top: 10px;
    font-size: 0.97rem;
}

/* Slider principal */
.slider {
    width: 100%;
    max-width: 1200px;
    margin: 30px auto 0 auto;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.slider img {
    width: 100%;
    display: block;
}

/* Carrusel de productos */
.product-slider-row {
    margin: -95px auto 0 auto;
    max-width: 1200px;
    position: relative;
    z-index: 2;
    overflow: visible;
}
.product-slider-title {
    font-size: 1.3rem;
    color: #ff9800;
    margin-bottom: 10px;
    margin-left: 10px;
}
.product-slider {
    display: flex;
    overflow-x: auto;
    gap: 18px;
    padding-bottom: 10px;
    scroll-behavior: smooth;
}
.product-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    min-width: 220px;
    max-width: 220px;
    margin: 0 0 10px 0;
    padding: 15px 12px 12px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s, transform 0.2s;
    cursor: pointer;
}
.product-card:hover {
    box-shadow: 0 12px 32px rgba(255,152,0,0.25), 0 2px 8px rgba(0,0,0,0.10);
    transform: translateY(-8px) scale(1.04);
}
.product-card img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 10px;
}
.product-card .product-title {
    font-size: 1.1rem;
    font-weight: 500;
    color: #222;
    margin-bottom: 6px;
    text-align: center;
}
.product-card .product-price {
    color: #ff9800;
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 8px;
}
.product-card .product-btn {
    background: #ff9800;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 7px 18px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
}
.product-card .product-btn:hover {
    background: #e68900;
}

@media (max-width: 900px) {
    .footer { flex-direction: column; gap: 30px; align-items: flex-start; }
    .slider, .product-slider-row { max-width: 98vw; }
}
@media (max-width: 600px) {
    .header, .footer { flex-direction: column; align-items: flex-start; }
    .header .logo, .header .user-area, .header .search-box { margin: 10px 0 0 10px; }
    .footer { font-size: 0.95rem; }
    .product-card { min-width: 170px; max-width: 170px; }
}

.menu-btn {
  background: #fff;
  color: #ffa600 !important;
  border: 2px solid #ffa600;
  border-radius: 8px;
  font-weight: 500;
  padding: 6px 18px;
  margin-right: 4px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  box-shadow: none;
}
.menu-btn:hover, .menu-btn:focus, .menu-btn.active {
  background: #ffe0b2;
  color: #d97706 !important;
  border-color: #d97706;
}

.first-section,
.container.mb-5.position-relative.first-section {
    margin-top: -87px !important;
} 