/*
Theme Name: WP Review Site
Theme URI: 
Author: Dwayne Paris
Author URI: https://dwaynestechsupport.online/
Description: Product Review Theme for starting affiliate review site.
Version: 1.0
*/

* {
    margin: 0;
    padding: 0;
}


body{
    font-family: 'Roboto', sans-serif;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}

/* Heading */

h1 {
    font-size: 32px;
}

h2 {
    font-size: 25px;
}

h3 {
    font-size: 20px;
}

/* Spacers */

.spacer-17 {
    height: 17px;
}

.spacer-20 {
    height: 20px;
}


/* Nav Menu */

.navbar {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
}

.nav-brand img {
    height: 32px;
}

.nav-link {
    color: #2d2d2d;
}

/*  Hero Banner */

.hero-banner {
    padding: 160px 0;
    background: #ffffff;
}

.hero-banner h1 {
    font-size: 60px;
    color: #fff;
    margin-bottom: 20px;
}

.hero-banner p {
    font-size: 18px;
    color: #fff;
    margin-bottom: 20px;
}

.btn-secondary {
    text-transform: uppercase;
    font-size: 14px;
    padding: 11px 16px;
    background-color: #F3811C;
    border-radius: 50px;
    border: 0;
    font-weight: bold;
}

.btn-secondary:hover { 
    background-color: #F3811C;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2), 0 4px 10px 0 rgba(0, 0, 0, 0.19);
}

.btn-primary {
    text-transform: uppercase;
    font-size: 14px;
    padding: 11px 16px;
    background-color: #1C82F3;
    border-radius: 50px;
    border: 0;
    font-weight: bold;
    margin-right: 20px;
}

.btn-primary:hover { 
    background-color: #1C82F3;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2), 0 4px 10px 0 rgba(0, 0, 0, 0.19);
}



/* Page Section & Tile */

.page-section {
    margin: 40px 0;
}

.page-title {
    padding: 30px 0;
    background: #ededed;
    color: #2d2d2d;
}

.page-title h2 {
    font-size: 40px;
}

/* Main Content */

.main {
    margin: 40px 0;
}

.main p {
    color: #333;
}



/*  Product Chart Boxes */

.top-hosting {
    margin-top: 30px;
    margin-bottom: 30px;
}


.chart-box {
    width: 100%;
    padding: 20px 10px;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    position: relative;
    margin-bottom: 20px;
  
}


.has-top-rate {
    width: 30px;
    height: 40px;
    position: absolute;
    top: 10px;
    left: -15px;
    font-size: 19px;
    font-weight: bold;
    color: #805400;
    
}

.has-top-rate-no {
    width: 220px;
    position: relative;
    top: 10px;
    left: -25px;
    font-size: 14px;
    font-weight: bold;
    color: #000;
    padding: 0px 15px;
    border: 1px solid #F79443;
    border-radius: 9px 0 9px 0;
    text-align: center;
    background-color: #fff;
    
}


.has-top-rate-no:before {
    position: absolute;
    content: '';
    border-left: 5px solid transparent;
    border-right: 7px solid #F79443;
    border-top: 7px solid #F79443;
    border-bottom: 5px solid transparent;
    left: 2px;
    top: 22px;
}


.pl-40 {
    padding-left: 40px;
}

.first {
    background: url(img/rank1.png) center 0 no-repeat;
}

.second {
    background: url(img/rank2.png) center 0 no-repeat;
}


.third {
    background: url(img/rank3.png) center 0 no-repeat;
}

.sale {
    color: #09a789;
    font-size: 14px;
    font-weight: bold;
}



.chart-box ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.feat {
    color: #54595f;
}

.chart-box .brands {
     margin-top: 40px;
    width: 160px;
    height: auto;
    z-index: -2;
}


.ezy-rating {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.ezy-rating .dashicons {
  font-size: 18px;
  color: #ffb400; /* gold color */
  vertical-align: middle;
}



.rate-text {
    width: 60%;
    background: #699d53;
    color: white;
    padding: 5px;
    border-radius: 5px;
    font-size:13px;
    line-height: 20px;
    
}



.fa-check-circle{
    color: #699d53;
}



.cta-button {
    background: #F79443;
    padding: 10px 10px;
    border-radius: 5px;
    color: #ffffff;
    font-size:16px;
    font-weight: bold;
}

.cta-button:hover {
    background: #a10b06;
    text-decoration: none;
    color: #ffffff;
}


.read-reviews {
    font-size:14px;
    font-weight: bold;
}


/* Product Categories Style */

.product-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 15px;
    margin-top: 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
    height: 100%;
}
.product-card:hover {
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}
.product-thumb {
    border-radius: 8px;
}
.product-title {
    font-size: 16px;
    font-weight: 600;
    margin: 10px 0;
}
.product-rating {
    color: #ffcc00;
    font-size: 16px;
}


/* Review Categories Style */

.review-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
    height: 100%;
}
.review-card:hover {
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}
.review-thumb {
    border-radius: 8px;
}
.review-title {
    font-size: 16px;
    font-weight: 600;
    margin: 10px 0;
}
.review-rating {
    color: #ffcc00;
    font-size: 18px;
}



/* Discount Sidebar */

.couponside {
    padding: 20px;
    background: #f5f5f5 !important;
    margin: 20px 0;
}


.couponside ul li a{
    font-size: 14px;
    color: #2d2d2d;
}


/* Sidebars */

.side-bar {
    padding: 20px;
    background: #f5f5f5;
    margin-bottom: 20px;
}

.side-bar ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.side-bar ul li {
    margin-top: 5px;
}

.side-bar ul li a{
    font-size: 14px;
    color: #2d2d2d;
}

/* All Product H1 */

.blog-section .adblock h1 {
    margin: 7px 0;
}


/*  Blog section */

.blog-section {
    margin: 40px 0;
}

.box-shad {
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}


.blog-section h1 {
    margin-bottom: 40px;
}

.card {
    margin-top: 40px !important;
}


.post-section h2{
    margin: 20px 0;
}


/*  Footer section */

.footer {
    background: #2c3644;
    padding: 20px 0;
    margin-top: 20px;
}

.footer-logo img {
    height: 32px;
}

.footer h3 {
    color: #ddd;
}

.footer a {
    color: #8E99A9;
}

.footer a:hover {
    color: #8E99A9;
}

.footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
    line-height: 30px;
}

.footer ul li {
    margin: 0;
    padding: 0;
}

.footer p {
    color: #8E99A9;
}

.footer-inner {
    
}

.footer-logo {
    width: 250px;
    margin-bottom: 5px;
}

.copyright {
    background: #262f3c;
    padding: 5px 0;
}

.copyright p {
    padding-top: 10px;
    color: #ccc;
    font-size: 14px;
}

.fa-facebook, .fa-instagram, .fa-twitter {
         background: #000 !important;
         font-size: 19px;
         padding: 10px;
         border-radius: 50%;
}




/*  Media Queries */

@media (max-width: 992px){

   
}

@media (max-width: 768px) {

h1 {
    font-size: 30px;
}

.page-title h2 {
    font-size: 20px;
}
  
 /*Hero Banner Section */   

.spacer-30 {
    height: 20px;
}

.hero-banner h1 {
    font-size: 30px;
    text-align: center;
    margin-bottom: 20px;
}


.hero-banner p {
    font-size: 16px;
    text-align: center;
    margin-bottom: 20px;
}


.btn-secondary {
   display: flex;
  justify-content: center;
   margin-bottom: 20px
}


.btn-primary {
    display: flex;
  justify-content: center;
    margin-bottom: 20px;
}


/* Top Hosting Section */

.chart-box, .sale, .feat {
    text-align: center;
}


.chart-box .col-md-5 {
    margin-bottom: 20px;
}


/* Blog Section */

.card {
    margin-bottom: 30px;
}

.disclaim p {
    font-size: 12px;
}

/* Footer Section */

.footer h3 {
    margin-top: 40px;
}



}

@media (max-width: 576px){

.page-title h2 {
    font-size: 30px;
}

h1 {
    font-size: 20px;
}
  
 /*Hero Banner Section */   

.hero-banner {
    padding: 60px 0;
}

.spacer-30 {
    height: 15px;
}

.hero-banner h1 {
    font-size: 27px;
    text-align: center;
    margin-bottom: 15px;
}


.hero-banner p {
    font-size: 14px;
    text-align: center;
    margin-bottom: 15px;
}


.btn-secondary {
   display: flex;
  justify-content: center;
   margin-bottom: 15px
}


.btn-primary {
    display: flex;
  justify-content: center;
    margin-bottom: 15px;
}

.rate-text {
    width: 60%;
}


/* Top Hosting Section */

.chart-box, .sale, .feat {
    text-align: center;
}


.chart-box .col-md-5 {
    margin-bottom: 15px;
}


/* Blog Section */

.card {
    margin-bottom: 20px;
}

.disclaim p {
    font-size: 12px;
}

/* Footer Section */

.footer h3 {
    margin-top: 40px;
}



  
}
