/*
Theme Name:  Custom Theme
Theme URI: 
Author: Socail Pie
Author URI: https://socialpie.io/
Text Domain: socail-pie-theme
Description:  Custom Theme Theme is a modernized take on an ever-popular WordPress layout ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â the horizontal masthead with an optional right sidebar that works perfectly for blogs and websites. It has custom color options with beautiful default color schemes, a harmonious fluid grid using a mobile-first approach, and impeccable polish in every detail.  Custom Theme will make your WordPress look beautiful everywhere.
Version: 1.0
Requires at least: 5.0
Requires PHP: 7.0
License: GNU General Public License v2 or later
*/

*{
    padding:0;
    margin:0;
    box-sizing:border-box;
}
:root{
    --body-bg: #131313;
    --primary-color:#61B20F;
    --primary-color-light: #1B1B1B;
    --color-yellow:#FFB300;
}
body{
  font-family: "Open Sans", sans-serif;
  background-color: #ededceb0;
}
.text-primary{
    color:var(--primary-color) !important;
}
.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1200px;
        width:90%;
        padding: 0;
}
p,li{
    font-size:17px;
}
a{
   color:#fff;
}
a:hover{
    color:var(--primary-color);
}
.site-logo a {
    display: inline-block;
}
.site-logo a img {
    width: 200px;
    height: auto;
}
.header-menu a {
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    transition:0.4s all;
}
.header-menu .current_page_item a {
    color: var(--primary-color);
}
.btn-offer {
    background: var(--primary-color) !important;
    color: #fff !important;
}
.footer-bottom {
    border-top: 1px solid #FFFFFF40;
}
.bg-light-dark{
    background-color:var(--primary-color-light);
}
.footer-menu a{
    text-decoration:none;
    font-size: 15px;
    margin-top: 6px;
    display: block;
}
.mobile-menu ul li a {
    text-decoration: none;
    padding: 11px 12px;
    display: block;
    background: #333;
    border-radius: 5px;
}
.mobile-menu ul {
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.footer_menu li.current_page_item a {
    color: var(--primary-color);
}
.header_menu_wrap li .sub-menu > li > .sub-menu {
    right: -291px;
    top: 0;
}
.header_menu_wrap li {
    font-size: 16px;
}
.text-info-store {
    color: #479CDB;
}
ul.sub-menu {
    position: absolute;
    background: #000;
    top: 30px;
    list-style: none;
    padding: 0;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s all;
    z-index: 999;
    max-width: 400px;
    min-width: 320px;
}
.header_menu_wrap li {
    position: relative;
}
ul.sub-menu li a {
    padding: 10px 17px;
    display: block;
    transition: 0.1s all;
}
ul.sub-menu li a:hover {background-color: var(--primary-color);color: #fff;}
.header_menu_wrap ul li:hover > ul {
    visibility: visible;
    opacity: 1;
}
.mobile-menu ul li i {
    position: absolute;
    right: 4px;
    top: 4px;
    background: var(--primary-color);
    z-index: 99;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    border-radius: 5px;
}
.mobile-menu ul li {
    position: relative;
}

:root {
    --navy: #003366;
    --gold: #D4AF37;
    --light-gray: #f8f9fa;
    --border-radius: 12px;
}

.luxury-offer-card {
    display: flex;
    background: #fff;
    border-radius: var(--border-radius);
    /* box-shadow: 0 10px 30px rgba(0,0,0,0.08); */
    margin-bottom: 30px;
    overflow: hidden;
    border: 1px solid #22222252;
    transition: transform 0.3s ease;
    flex-wrap: wrap;
}

.luxury-offer-card.top-pick {
    border: 2px solid var(--gold);
}

/* Image Section */
.card-image-section {
    flex: 0 0 40%;
    position: relative;
}

.lifestyle-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.badge-best-overall {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gold);
    color: white;
    padding: 5px 15px;
    font-weight: bold;
    border-radius: 4px;
    z-index: 2;
}

/* Content Section */
.card-content-section {
    flex: 1;
    padding: 30px;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.brand-title { 
    font-size: 24px; 
    color: var(--navy); 
    margin: 0; 
}

/* Attribute Bars */
.attr-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
}

.attr-bar {
    width: 120px;
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
}

.attr-fill {
    height: 100%;
    background: #4CAF50; /* Keep green for positive metrics */
}

/* Buttons */
.card-footer-actions {
    display: flex;
    gap: 10px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.btn-premium-primary {
    background: #13b4c8;
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    flex: 2;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-premium-outline {
    border: 1px solid var(--navy);
    color: var(--navy);
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    flex: 1;
    text-align: center;
}

.btn-premium-primary:hover {background: #13b4c8;color: white;}
.footer_logo img {
    width: 230px;
    display: table;
    margin: auto;
    margin-bottom: 12px;
}
footer.site-footer input {
    padding: 13px 20px;
}
header,footer.site-footer {
    background: #fff;
}
@keyframes changeColor {
  from {color: #000;border-color:#000}
  to {color: #F00;border-color:#F00}
}
body .seasonal_ticker img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}
@media screen and (max-width: 767px) {
.page-section-image {
    width: 100%;
}    
.page-section-title h1 {
    font-size: 1.5rem;
}
.post_item_image {
    height: 150px;
}
.post_item_content h5 {
    margin-bottom: 0;
    font-size:1rem;
}
.tags_list a {
    font-size: 15px;
}
footer.site-footer p {
    font-size: 13px !important;
    letter-spacing: 2px;
}
ul.sub-menu {
    position: unset;
    background: unset;
    padding: 18px 0px 10px 32px;
    visibility: unset;
    opacity: unset;
    display: none;
    transition: unset;
}
 ul.sub-menu li:not(:last-of-type) {
    margin-bottom: 10px;
 }
 .offer-bullets li {
    font-size: 14px;
}
.offer-bullets li strong {
    font-weight: 400;
}
.card-footer-actions a {
    width: 100%;
    display: block;
    flex: 100%;
    padding: 12px;
}
.card-image-section {
    flex: 0 0 100%;
}
}