/*
Theme Name: Vertex Bazaar
Theme URI:  https://vertexbazaar.com/vertex-bazaar
Author:      Vertex Bazaar
Author URI:  https://vertexbazaar.com
Description: Clean, responsive eCommerce WordPress theme based on your HTML template.
Version:     1.0.0
License:     GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: vertex-bazaar
Tags:        e-commerce, responsive, blog, custom-header, custom-menu
*/

/* =============================================================================
   RESET & BASE STYLES
============================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--primary-color);
    color: #ffffff;
    line-height: 1.5;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

/* =============================================================================
   BUTTONS
============================================================================== */
button {
    cursor: pointer;
    border: none;
    font-size: 14px;
    font-weight: 500;
}

.login-btn,
.mobile-login-btn {
    padding: 8px 24px;
    background: linear-gradient(to left, #E685FF, #9F85FF);
    color: #fff;
    border-radius: 6px;
    transition: opacity 0.3s ease;
}

.login-btn:hover,
.mobile-login-btn:hover {
    opacity: 0.9;
}

.feature-card, .product-card, .blog-card{
    background: var(--secondary-color) !important;
}

/* =============================================================================
   GLOBAL UTILITIES (Used in template)
============================================================================== */
/* Rounded corners */
.rounded { border-radius: 6px; }
.rounded-lg { border-radius: 12px; }
.rounded-xl { border-radius: 16px; }

/* Shadows */
.shadow-sm { box-shadow: 0 1px 2px rgba(0,0,0,0.1); }
.shadow-md { box-shadow: 0 4px 6px rgba(0,0,0,0.15); }
.shadow-lg { box-shadow: 0 8px 16px rgba(0,0,0,0.2); }

/* Transitions */
.transition { transition: all 0.3s ease; }
.hover\:opacity-90:hover { opacity: 0.9; }

.home-main-title {
    position: absolute;
    left: -9999px;
}