/*
Theme Name:   Overlay Child
Theme URI:    https://kairaweb.com/wordpress-theme/overlay/
Description:  Overlay Child is a child theme for the Overlay WordPress theme. It currently has mo theme changes, as it's just set up and ready for you to start your own editing.
Author:       Kaira
Author URI:   https://kairaweb.com/
Template:     overlay
Version:      1.0.0
License:      GNU General Public License v2 or later
License URI:  http://www.gnu.org/licenses/gpl-2.0.html
Tags:         two-columns, three-columns, four-columns, left-sidebar, right-sidebar, grid-layout, flexible-header, custom-background, custom-colors, custom-header, custom-menu, custom-logo, editor-style, featured-image-header, featured-images, footer-widgets, full-width-template, theme-options, threaded-comments, translation-ready, blog, e-commerce, news
Text Domain:  overlay-child
*/

/* -- Add your Own Custom CSS Here -- */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    font-size: 13px;
    color: #333;
    background: #fff;
    line-height: 1.5;
}

a { color: #333; text-decoration: none; }
a:hover { color: #c13e2a; text-decoration: underline; }

ul { list-style: none; }

.col-group::after, .col-group::before {
    content: "";
    display: table;
    clear: both;
}
.col-group::after { clear: both; }
.col-group { zoom: 1; }

.inline-left { float: left; }
.inline-right { float: right; }
.clear { clear: both; }
.hidden { display: none; }

.m-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ===== TOP NAVIGATION BAR ===== */
.link-menu {
    background: #333;
    color: #fff;
    font-size: 11px;
    padding: 5px 0;
}

.link-menu .m-container {
    position: relative;
}

.welcome-msg {
    float: left;
    color: #fff;
    padding: 3px 0;
}

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

.welcome-msg a:hover {
    color: #f0c040;
    text-decoration: underline;
}

.links-list {
    float: right;
}

.links-list li {
    float: left;
}

.links-list li a {
    color: #fff;
    padding: 3px 10px;
    display: inline-block;
}

.links-list li a:hover {
    color: #f0c040;
    text-decoration: none;
}

/* ===== HEADER ===== */
header {
    background: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.header-left {
    width: 25%;
}

.logo-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-placeholder .dog-icon {
    font-size: 50px;
    color: #c13e2a;
}

.logo-placeholder .logo-text {
    font-size: 22px;
    font-weight: 700;
    color: #c13e2a;
    font-family: 'Open Sans Condensed', sans-serif;
    text-transform: uppercase;
    line-height: 1.1;
    text-align: center;
}

.logo-placeholder .logo-text span {
    display: block;
    font-size: 14px;
    color: #555;
    font-weight: 300;
}

.header-center {
    width: 50%;
    text-align: center;
    padding: 10px 20px;
}

.contact-phone {
    font-size: 13px;
    color: #555;
    margin-bottom: 10px;
}

.free-ship {
    color: #c13e2a;
    font-weight: 600;
    font-size: 14px;
    margin-top: 5px;
}

.search-area {
    max-width: 500px;
    margin: 0 auto;
}

.searchBox {
    display: flex;
    border: 2px solid #c13e2a;
    border-radius: 4px;
    overflow: hidden;
}

.search-text {
    flex: 1;
    border: none;
    padding: 10px 15px;
    font-size: 13px;
    outline: none;
    font-family: 'Open Sans', sans-serif;
}

.search-text::placeholder {
    color: #999;
}

.search-btn {
    background: #c13e2a;
    color: #fff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 14px;
}

.search-btn:hover {
    background: #a8321f;
}

.header-right {
    width: 25%;
    text-align: right;
}

.dogs-top {
    height: 60px;
}

.cart-area {
    text-align: center;
    margin-top: 5px;
}

.cart-area a {
    color: #c13e2a;
    font-weight: 600;
    font-size: 13px;
}

.cart-area .cart-icon {
    font-size: 24px;
    display: block;
    margin-bottom: 2px;
}

.circle-item {
    display: inline-block;
    background: #c13e2a;
    color: #fff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 11px;
    line-height: 20px;
    text-align: center;
    position: relative;
    top: -2px;
    margin-right: 5px;
}

/* ===== CATEGORY NAVIGATION ===== */
.cat-menu {
    background: #c13e2a;
    position: relative;
    z-index: 100;
}

.cat-list {
    display: flex;
    flex-wrap: wrap;
}

.cat-list > li {
    position: relative;
}

.cat-list > li > a {
    display: block;
    color: #fff;
    padding: 12px 14px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    transition: background 0.2s;
}

.cat-list > li > a:hover {
    background: #a8321f;
    text-decoration: none;
}

.subMenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    border-top: 3px solid #c13e2a;
}

.cat-list > li:hover .subMenu {
    display: block;
}

.subMenu li a {
    display: block;
    padding: 8px 15px;
    color: #333;
    font-size: 12px;
    border-bottom: 1px solid #eee;
}

.subMenu li a:hover {
    background: #f5f5f5;
    color: #c13e2a;
    text-decoration: none;
}

/* ===== CONTENT AREA ===== */
.content-area {
    padding: 20px 0;
}

/* ===== FLEXSLIDER ===== */
.flexslider {
    position: relative;
    overflow: hidden;
    background: #f9f9f9;
}

.flexslider .slides {
    position: relative;
    overflow: hidden;
    height: 400px;
}

.flexslider .slides .slider-placeholder {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flexslider .slides .slider-placeholder.active {
    opacity: 1;
}

.slider-placeholder-content {
    text-align: center;
    padding: 40px;
}

.slider-placeholder-content h2 {
    font-size: 32px;
    color: #c13e2a;
    font-family: 'Open Sans Condensed', sans-serif;
    margin-bottom: 10px;
}

.slider-placeholder-content p {
    font-size: 16px;
    color: #666;
}

/* Slider Controls */
.flex-control-nav {
    text-align: center;
    padding: 10px 0;
    position: relative;
    z-index: 10;
}

.flex-control-nav li {
    display: inline-block;
    margin: 0 5px;
}

.flex-control-nav li a {
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    text-indent: -9999px;
    border: 2px solid #fff;
    box-shadow: 0 0 3px rgba(0,0,0,0.3);
}

.flex-control-nav li a.active {
    background: #c13e2a;
}

.flex-direction-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 20;
}

.flex-direction-nav li {
    pointer-events: all;
}

.flex-direction-nav a {
    display: block;
    width: 40px;
    height: 40px;
    background: rgba(0,0,0,0.5);
    color: #fff;
    text-align: center;
    line-height: 40px;
    font-size: 20px;
    border-radius: 50%;
    margin: 0 10px;
}

.flex-direction-nav a:hover {
    background: rgba(0,0,0,0.8);
    text-decoration: none;
}

/* ===== CATEGORY HEADER ===== */
.category-header {
    text-align: center;
    padding: 20px 0;
}

.category-header h3 {
    font-size: 14pt;
    font-family: 'Open Sans', sans-serif;
    color: #333;
    font-weight: 400;
    line-height: 1.6;
}

.category-header em {
    color: #333;
}

/* ===== PRODUCTS SECTION ===== */
.header-specials {
    text-align: center;
    font-size: 16px;
    color: #c13e2a;
    font-weight: 600;
    padding: 15px 0;
    font-family: 'Open Sans', sans-serif;
    border-bottom: 2px solid #c13e2a;
    margin-bottom: 20px;
}

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

.product-item {
    background: #fff;
    border: 1px solid #eee;
    padding: 15px;
    text-align: center;
    transition: box-shadow 0.2s;
    position: relative;
}

.product-item:hover {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.product-item .img {
    margin-bottom: 10px;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-placeholder {
    width: 100%;
    height: 180px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #ccc;
}

.product-item .name {
    margin-bottom: 5px;
}

.product-item .name a {
    font-size: 12px;
    color: #333;
    line-height: 1.4;
    display: block;
}

.product-item .name a:hover {
    color: #c13e2a;
}

.product-item .stars {
    color: #f0c040;
    font-size: 12px;
    margin-bottom: 5px;
}

.product-item .price {
    margin-bottom: 5px;
    font-weight: 600;
    color: #c13e2a;
    font-size: 14px;
}

.product-item .price .price2 {
    color: #999;
    font-weight: 400;
    text-decoration: line-through;
    font-size: 12px;
}

.on-sale {
    display: inline-block;
    background: #c13e2a;
    color: #fff;
    padding: 2px 8px;
    font-size: 10px;
    font-weight: 600;
    border-radius: 2px;
    margin-top: 3px;
}

.product-item .status {
    font-size: 11px;
    color: #27ae60;
    margin-bottom: 10px;
}

.product-item .btn {
    background: #c13e2a;
    color: #fff;
    border: none;
    padding: 8px 20px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 3px;
    font-family: 'Open Sans', sans-serif;
    transition: background 0.2s;
}

.product-item .btn:hover {
    background: #a8321f;
}

/* ===== RIGHT SIDEBAR ===== */
#rightContent {
    width: 0;
    display: none;
}

/* ===== FOOTER ===== */
footer {
    background: #333;
    color: #fff;
    padding: 30px 0;
    margin-top: 30px;
}

.footer-left {
    float: left;
    width: 50%;
}

.footer-right {
    float: right;
    width: 45%;
}

#extra-page ul {
    columns: 2;
    margin-bottom: 20px;
}

#extra-page ul li {
    margin-bottom: 5px;
}

#extra-page ul li a {
    color: #ccc;
    font-size: 12px;
}

#extra-page ul li a:hover {
    color: #f0c040;
    text-decoration: none;
}

.quick-links-btn {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid #555;
}

.social-icons h3 {
    font-size: 14px;
    margin-bottom: 10px;
    color: #fff;
}

.social-icons a {
    display: inline-block;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    margin-right: 8px;
    text-align: center;
    line-height: 36px;
    font-size: 16px;
    color: #fff;
    transition: opacity 0.2s;
}

.social-icons a:hover {
    opacity: 0.8;
    text-decoration: none;
}

.facebook { background: #3b5998; }
.twitter { background: #1da1f2; }
.pinterest { background: #bd081c; }
.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }

.dog {
    text-align: center;
    padding: 20px 0;
    font-size: 60px;
    opacity: 0.3;
}

/* ===== MAILING LIST ===== */
.mailinglist {
    margin-bottom: 20px;
}

.mailinglist_text {
    font-size: 13px;
    margin-bottom: 10px;
    color: #fff;
}

.mailinglist-form {
    display: flex;
    margin-bottom: 10px;
}

.mailinglist-txt {
    flex: 1;
    padding: 10px;
    border: 1px solid #555;
    border-radius: 3px 0 0 3px;
    font-size: 12px;
    font-family: 'Open Sans', sans-serif;
    background: #444;
    color: #fff;
}

.mailinglist-txt::placeholder {
    color: #999;
}

.mailinglist-btn {
    background: #c13e2a;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 0 3px 3px 0;
    cursor: pointer;
    font-weight: 600;
    font-size: 12px;
    font-family: 'Open Sans', sans-serif;
}

.mailinglist-btn:hover {
    background: #a8321f;
}

.mailinglist-options {
    font-size: 12px;
    color: #ccc;
}

.mailinglist-subscribe {
    margin-right: 15px;
}

.mailinglist-subscribe input {
    margin-right: 5px;
}

.copyright {
    font-size: 11px;
    color: #999;
    margin-top: 15px;
}

/* ===== PAYMENT & TRUST ===== */
.payment-logos {
    text-align: center;
    margin: 15px 0;
}

.payment-placeholder {
    display: inline-flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    padding: 10px;
    background: #fff;
    border-radius: 4px;
}

.payment-placeholder .card {
    width: 40px;
    height: 25px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
    color: #fff;
    font-weight: 700;
}

.card-visa { background: #1a1f71; }
.card-mc { background: #eb001b; }
.card-discover { background: #ff6000; }
.card-amex { background: #006fcf; }
.card-paypal { background: #003087; }

.satisfaction-badge {
    text-align: center;
    margin: 15px 0;
}

.satisfaction-badge .badge {
    width: 80px;
    height: 80px;
    border: 3px solid #f0c040;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #f0c040;
    text-align: center;
    font-weight: 700;
    line-height: 1.2;
}

.ssl-badge {
    text-align: center;
    margin: 10px 0;
}

.ssl-badge .badge {
    display: inline-block;
    padding: 5px 15px;
    border: 1px solid #27ae60;
    border-radius: 3px;
    font-size: 10px;
    color: #27ae60;
}

/* ===== MOBILE MENU BAR ===== */
.mob-menu-bar {
    display: none;
    background: #c13e2a;
    padding: 10px 15px;
    color: #fff;
}

.mob-menu-bar > div {
    display: inline-block;
    margin-right: 15px;
    font-size: 20px;
    cursor: pointer;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .header-left { width: 30%; }
    .header-center { width: 40%; }
    .header-right { width: 30%; }
}

@media (max-width: 768px) {
    .link-menu { display: none; }

    .mob-menu-bar {
        display: block;
    }

    .header-left { width: 100%; text-align: center; }
    .header-center { width: 100%; display: none; }
    .header-right { width: 100%; text-align: center; display: none; }

    .cat-menu { display: none; }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .footer-left, .footer-right {
        width: 100%;
        float: none;
    }

    .flexslider .slides {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}
