/*
Theme Name: Segnitos Custom Theme
Author: Segnitos
Version: 1.0
*/
/* RESET / BASE */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

/* TOPBAR */
.topbar {
    background: #A51D23CC;
    color: #fff;
    font-size: 14px;
    padding: 8px 16px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.topbar a {
    color: #fff;
    text-decoration: none;
}

.topbar a:hover {
    text-decoration: underline;
}

/* NAV */
.main-nav {
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}

/* LOGO */
.logo img {
    height: 48px;
    width: auto;
}

/* DESKTOP MENU */
.desktop-menu {
    display: none;
}

.menu {
    display: flex;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
}

.menu a:hover {
    color: #2563eb;
}

/* MOBILE */
.menu-toggle {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    padding-bottom: 16px;
}

.mobile-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu-list li {
    border-top: 1px solid #eee;
}

.mobile-menu-list a {
    display: block;
    padding: 12px 0;
    text-decoration: none;
    color: #000;
}

.topbar a{
    font-size:12px;
}

/* FOOTER */
.site-footer {
    background: #fff;
    text-align: center;
}

/* CTA */
.footer-cta {
    padding: 80px 20px 60px;
}

.footer-subtitle {
    font-size: 12px;
    letter-spacing: 2px;
    color: #6b7280;
    margin-bottom: 16px;
}

.footer-title {
    font-size: 42px;
    color: #b91c1c;
    margin: 0 0 20px;
}

.footer-description {
    font-size: 16px;
    color: #374151;
    max-width: 640px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.footer-btn {
    display: inline-block;
    padding: 14px 36px;
    background: #ff3b3b;
    color: #fff;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 500;
}

.footer-btn:hover {
    background: #e62e2e;
}

/* COPYRIGHT */
.footer-copy {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 50px;
}

/* BOTTOM */
.footer-bottom {
    border-top: 1px solid #eee;
    padding: 30px 20px;
}

.footer-bottom-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* FOOTER MENU */
.footer-menu {
    list-style: none;
    display: flex;
    gap: 32px;
    padding: 0;
    margin: 0;
}


.footer-menu a {
    text-decoration: none;
    color: #111827;
    font-size: 14px;
}

/* SOCIAL */
.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border: 1px solid #e5e7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #111827;
    font-size: 14px;
}

/* RED STRIP */
.footer-strip {
    height: 10px;
    background: #b91c1c;
}
/* Woocommerce */
.site-content > .container > .woocommerce {
	display:block;
	margin:0 auto;
	max-width:1280px;
	padding:40px 16px;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title{
    color:#a71e24; /* your color */
    font-weight:600;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title:hover{
    color:#000;
}

.whatsapp-archive-btn{
    display:block;
    text-align:center;
    background:#25D366;
    color:#fff;
    padding:10px;
    margin-top:10px;
    border-radius:5px;
    text-decoration:none;
    font-weight:600;
    font-size:14px;
}

.whatsapp-archive-btn:hover{
    background:#1ebe5d;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .footer-title {
        font-size: 32px;
    }

    .footer-bottom-inner {
        flex-direction: column;
    }
}


/* RESPONSIVE */
@media (min-width: 768px) {
    .topbar a{
        font-size:14px;
    }
    .desktop-menu {
        display: block;
    }

    .menu-toggle {
        display: none;
    }

    .mobile-menu {
        display: none !important;
    }
}
