/*
Theme Name: Flatsome Child - ShopTaiKhoan Clone
Description: Full Clone of shoptaikhoan.com - Accelerated Version
Author: Antigravity AI
Template: flatsome
Version: 3.2
*/

@import url("../flatsome/style.css");

/* ========================================
   FULL CSS SOURCE CLONE
   ======================================== */

:root {
    --primary-color: #201e2c;
    --fs-color-primary: #201e2c;
    --fs-color-secondary: #651fff;
    --fs-color-success: #7a9c59;
    --fs-color-alert: #b20000;
    --border-radius: 10px;
}

/* TYPOGRAPHY - SVN-GILROY */
body:not(.wp-admin) {
    font-family: 'SVN-Gilroy', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

/* ROUNDED CORNERS & SHINE EFFECT (FROM TARGET SOURCE) */
.product-small .box-image,
.img {
    border-radius: var(--border-radius);
    overflow: hidden !important;
}

.product-small .box-image img,
.img img {
    border-radius: var(--border-radius);
}

.box-image::before,
.img .img-inner::before {
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, .3) 100%);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
    pointer-events: none;
}

.box-image:hover::before,
.post-item:hover .box-image::before,
.img:hover .img-inner::before {
    -webkit-animation: shine .75s;
    animation: shine .75s;
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

/* CARDS HOVER LIFT */
.product-small.box:hover,
.has-hover:hover .img-inner {
    transform: translateY(-6px);
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.22) 0px 6px 6px;
    transition: transform 0.3s, box-shadow 0.3s;
}

/* HEADER STYLE */
.header-bg-color {
    background-color: #201e2c !important;
}

#header {
    background-color: #201e2c !important;
}

/* SEARCH BAR EXACT STYLE */
.header-search-form input {
    background: rgba(255, 255, 255, 0.05) !important;
    border-radius: 5px !important;
    color: #fff !important;
    border: 2px solid rgba(255, 255, 255, 0.09) !important;
    height: 40px !important;
}

/* SECTION TITLE */
.section-title b::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #651fff;
}

/* GRID 5 COLUMNS */
@media (min-width: 850px) {
    body:not(.wp-admin) .products .col {
        width: 20% !important;
    }
}

/* CIRCULAR CART BUTTON */
.product-small .add_to_cart_button,
.product-small .button {
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    background-color: #651fff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 0 !important;
}

.product-small .add_to_cart_button:before {
    content: "🛒";
    font-size: 18px;
}