/* FADS Zero Store — Custom Styles */

/* Dark header */
.site-header,
.main-navigation {
    background-color: #1a1a2e !important;
}
.site-header .site-title a,
.site-header .site-description,
.main-navigation ul li a,
.site-header-cart .widget_shopping_cart a,
.site-header-cart .cart-contents {
    color: #ffffff !important;
}
.site-header {
    border-bottom: 3px solid #e94560;
}

/* Accent color */
a, .woocommerce-loop-product__title {
    color: #1a1a2e;
}
a:hover {
    color: #e94560;
}

/* Prices in red/accent */
.price, .woocommerce ul.products li.product .price {
    color: #e94560 !important;
    font-size: 1.1em;
    font-weight: 700;
}

/* Product cards */
.woocommerce ul.products li.product,
ul.products li.product {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
    background: #fff;
    padding-bottom: 1em;
}
.woocommerce ul.products li.product:hover,
ul.products li.product:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

/* Buttons */
.button, button, input[type=submit],
.woocommerce a.button, .woocommerce button.button,
.woocommerce a.added_to_cart {
    background-color: #e94560 !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 4px !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.button:hover, button:hover,
.woocommerce a.button:hover, .woocommerce button.button:hover {
    background-color: #c73650 !important;
}

/* Alt buttons */
.woocommerce a.button.alt, .woocommerce button.button.alt {
    background-color: #1a1a2e !important;
}
.woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover {
    background-color: #2d2d4e !important;
}

/* Light gray background */
body, .site-content, .content-area {
    background-color: #f5f5f7;
}

/* Dark footer */
.site-footer {
    background-color: #1a1a2e !important;
    color: #cccccc !important;
}
.site-footer a {
    color: #e94560 !important;
}
.site-footer .widget-title,
.site-footer h1, .site-footer h2, .site-footer h3 {
    color: #ffffff !important;
}

/* Clean up breadcrumb */
.storefront-breadcrumb, .woocommerce-breadcrumb {
    background: transparent;
    padding: 1em 0;
}

/* Site title */
.site-title a {
    font-weight: 800;
    letter-spacing: 1px;
}
.site-description {
    font-style: normal;
    opacity: 0.8;
}

/* Full width shop (no sidebar) */
.page-template-template-fullwidth-php .content-area,
.woocommerce .content-area,
.post-type-archive-product .content-area {
    width: 100% !important;
    float: none !important;
}
.woocommerce #secondary,
.post-type-archive-product #secondary {
    display: none !important;
}

/* Search bar in header */
.site-search {
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
}

/* Product title truncation */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 0.95em;
    line-height: 1.4;
    max-height: 4em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

/* Add to cart button spacing */
.woocommerce ul.products li.product .button {
    margin-top: 0.5em;
}
