.site-title {
    display: none;
}

.site-header {
    display: none;
}

#review-page {
    display: flex;
    flex-direction: column;
    background-color: #f2f2f3;
    font-family: 'Open Sans', sans-serif;
}

#review-page p {
    font-size: 16px;


}

/* Logo */

#logo {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 10px;
}

#logo img {
    width: 70%;
    max-width: 300px;
    margin-left: 60px;
}


@media (max-width: 800px) {
    #logo img {
        margin-left: 10px;
        width: 50%;
    }
}

a{
	color: #3670ff;
	font-weight: 600;
	
}



/* Sticky Button */

#scroll-button {
    padding: 10px 20px;
    position: sticky;
    top: 0;
    background: linear-gradient(to right, #00ae4d, #008c4a);
    z-index: 1000;
    display: none;
    border: none;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    color: #fff;
    font-size: 1em;
    transition: all 0.3s ease;
    font-size: 20px;
}

#scroll-button:hover {
    box-shadow: 0 15px 25px -5px rgba(0, 0, 0, 0.2), 0 6px 10px -3px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}



/*
#scroll-button {
    padding: 10px 20px;
    position: sticky;
    top: 0;
    background-color: #00ae4d;
    z-index: 1000;
    display: none;
    border: 2px solid #fff;
}



/* Hero Banner Part 1 */

#part1-hero {

    display: flex;
    width: 100%;
    height: 250px;
    flex-direction: column;
    background-image: url('/wp-content/themes/creative-data-review/assets/images/heroback4.webp');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    justify-content: center;
    align-items: center;
}

#hero-text{
	display:flex;
	justify-content: center;
    align-items: center;
	flex-direction: column;
}


@media (max-width: 1024px) {
    #part1-hero {
        height: 200px;
    }
}


#part1-hero h1 {
text-align: center;
font-size: 40px;
font-weight: 700;
font-family: 'Oswald', sans-serif;	
color: #ffffff;
padding-left:10px ;
padding-right: 10px;
}

@media (max-width: 800px) {
    #part1-hero h1 {
        font-size: 32px;
    }
}


#part1-hero p {
    text-align: center;
    font-size: 16px;
    color: #ffffff;
}



#updated::before {
    content: "\2713\0020";
    font-weight: bold;
    color: #78ae38;
}


#hero-text img{
	width:100px;
	height:100px;
}




/* Intro Paragraph */

#part2-p1 {
    max-width: 1024px;
    margin: auto;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #000000;
}

@media (max-width: 800px) {
    #part2-p1 p {
        font-size: 16px;

    }
}



/*Product 1 Card */

/*Product 1 Card - Part1 */

#part3-card1 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    max-width: 1040px;
    margin: auto;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 10px;
}

@media (max-width: 800px) {
    #part3-card1 {
        flex-direction: column;
    }
}


/*CSS For making product photo and rating in row on mobile */


#photo-rating {

    display: flex;
    flex: 2;
    max-width: 1024px;
}

@media (max-width: 800px) {
    #photo-rating {
        flex-direction: row;

    }
}


#card1-part1 {
    display: flex;
    flex: 1;
    background-color: #fff;
    border-top: 0.5px solid silver;
    border-right: 0.5px solid silver;
    border-left: 0.5px solid silver;
    border-bottom: 0.5px solid silver;
    align-items: center;
    flex-direction: column;
    position: relative;

}

@media (max-width: 800px) {
    #card1-part1 {
        border-bottom: none;
        border-right: none;
    }
}

#card1-part1 img {
    width: 100%;
    height: 50%;
    margin-top: 25px;

}

@media (max-width: 800px) {
    #card1-part1 img {
        width: 100%;
        height: auto;

    }
}


#rating-label {
     background-color: #3670ff;
    /* Adjusted to match ribbon color */
    color: #FFFFFF;
    padding: 8px 16px;
    /* Adjusted for better proportion */
    border-radius: 5px;
    /* Adjusted to match ribbon style */
    margin-top: -20px;
    font-weight: 500;
    /* Made font bolder */
    font-size: 18px;
    text-align: center;
    position: relative;
    /* Required for pseudo-elements */
    display: inline-block;
    /* To contain the width to content */
    z-index: 1;
    /* To keep the text above pseudo-elements */
}

#rating-label::before,
#rating-label::after {
    content: "";
    position: absolute;
    bottom: -10px;
    /* Positioning below the element */
    border: 10px solid transparent;
    /* Creates the triangle with transparent sides */
    z-index: -1;
}

#rating-label::before {
    left: 0;
    border-right-color: #3670ff;
    /* Darker shade for the left fold */
    border-bottom-left-radius: 3px;
}

#rating-label::after {
    right: 0;
    border-left-color: #3670ff;
    /* Darker shade for the right fold */
    border-bottom-right-radius: 3px;
}

#rating-label-other {
    position: absolute;
    /* Positions the label absolutely within the container */
    top: 0;
    /* Positions the label at the top of the container */
    left: 0;
    /* Positions the label at the left of the container */
    background-color: #838383;
    /* Orange background, change as needed */
    color: #fff;
    /* White text color, change as needed */
    padding: 0.5em 1em;
    /* Adds space around the text */
    border-radius: 0 5px 5px 0;
    /* Rounds the top right and bottom right corners */
    margin-bottom: 20px;
    font-size: 12px;
}


#readfull {
    color: #fff !important;
    /* Change the link color */
    font-size: 14px;
    text-decoration: none;
    font-weight: 500;
    font-family: 'open-sans', sans-serif;
    margin-top: 25px;
    /* Add a line below the text */
}

#readfull a {
    color: #1f1e1e;
}


/*Product 1 Card - Part2 */

#card1-part2 {
    display: flex;
    flex: 1;
    background-color: #fff;
    box-shadow: inset 1px silver;
    border-top: 1px solid silver;
    border-right: 1px solid silver;
    border-bottom: 1px solid silver;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

@media (max-width: 800px) {
    #card1-part2 {
        border-bottom: none;
        border-left: 1px solid silver;
    }
}

#card1-part2 h1 {
    font-size: 42px;
    font-weight: 700;
    color: Black;

}

#card1-part2 h2 {
    font-size: 24px;
    margin-bottom: 0;
}

#card1-part2 h3 {
    font-size: 20px;
}

#ratingstars {
    font-size: 20px;
    color: #ff9f0e;
}


/*Product Cards Part3 */


#card1-part3 {

    display: flex;
    flex-direction: column;
    flex: 2;
    background-color: #fff !important;
    border-top: 1px solid silver;
    border-right: 1px solid silver;
    border-bottom: 1px solid silver;
    padding-left: 25px;
    padding-bottom: 10px;
}

.checkmark::before {
    content: "\2714"; /* Heavy Checkmark */
    font-size: 20px;
    color: #00b67a;
    margin-right: 10px; /* Adjust the space as needed */
}

.negcheckmark::before {
    content: "\2717"; /* Cross */
    font-size: 20px;
    color: #ef0000;
    margin-right: 10px; /* Adjust the space as needed */
}



#card1-part3 ul li {
    line-height: 1.5; 
}


#card1-part3 h1 {
    font-size: 24px;
    font-weight: 600;
    padding-top: 17px;
}

#card1-part3 ul {

    list-style-type: none;
    padding: 0px;
    margin: 0px;
    padding-right: 25px;

}


#card1-part3 ul img {
    width: 15px;
    height: 15px;
    margin-right: 5px;

}

@media (max-width: 800px) {
    #card1-part3 {
        border-bottom: none;
        border-left: 1px solid silver;
    }
}


/*Product 1 Card - Part4 */

#card1-part4 {

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1;
    background-color: #fff;
    border-top: 1px solid silver;
    border-right: 1px solid silver;
    border-bottom: 1px solid silver;
    padding: 20px;

}

#sale-info {
    background-color: #e85700;
    color: white;
    padding: 10px;
    text-align: center;
    position: relative;
    border-radius: 5px;
    font-size: 12px;
}

#sale-info::after {
    content: "";
    position: absolute;
    bottom: -10px;
    /* Adjust this value to match the triangle size */
    left: 50%;
    transform: translateX(-50%);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #e85700;
    /* Match this color with the .sale-info background-color */
}


#card1-part4-button {
    font-family: 'Poppins-SemiBold', sans-serif;
    margin-top: 20px;
    background-color: #3670ff;
    font-size: 18px;
    border-radius: 10px;
    padding: 14px 40px;
    font-weight: 400;
    color:#fff;
    cursor: pointer;
    border: 1px solid var(--bs-primary);
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    text-decoration: none;
    text-transform: uppercase !important;
	  white-space: nowrap;
}

#card1-part4-button:hover {
    background-color: #034cff;
    box-shadow: 0 5px 15px rgba(0, 128, 246, 0.7);
    transform: translateY(-1px);
}

#card1-part4-button:active {
    transform: translateY(1px);
    box-shadow: 0 3px 10px rgba(0, 128, 246, 0.5);
}


@media (max-width: 800px) {
    #card1-part4 {
        border-left: 1px solid silver;
    }
}



/* Hidden Products */


#last2products {
    display: none;

}

#see-last2products {
    background-color: transparent;
    color: #848484;
    max-width: 1024px;
    padding: 10px 25px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: auto;
    cursor: pointer;
    border: 2px solid #848484;
    border-radius: 50px;
    transition: all 0.3s ease 0s;
    margin-top: 15px;
    margin-bottom: 15px;
}

#see-last2products:hover {
    background-color: #848484;
    color: white;
}





/*Part 4 Story */

#part4-story {
    max-width: 1024px;
    margin: auto;
    padding: 20px;

}

#part4-story h1 {
    font-size: 2em;
    color: #000000;
    margin-bottom: 20px;
}

#part4-story img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px 0;
}

#part4-story p {
    font-size: 16px;
    line-height: 1.5;
    color: #000000;
    margin-bottom: 20px;
}

#part4-story #paragraph1,
#part4-story #paragraph2,
#part4-story #paragraph3 {
    margin-bottom: 40px;
}

@media screen and (max-width: 600px) {
    #part4-story h1 {
        font-size: 1.5em;
    }

    #part4-story p {
        font-size: 16px;
    }
}


/* Story - Customer Reviews */

#paragraph4-reviews {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review {
    display: flex;
    flex-direction: column;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 5px;
	background-color:#fbfcff;
}

.customer-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
	
}

.customer-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.customer-name {
    font-size: 1.2em;
    font-weight: bold;
}

.verified {
    color: green;
    margin-bottom: 10px;
}

.stars {
    color: gold;
    margin-bottom: 10px;
}

.review-text {
    color: #333;
}


#paragraph7-important {
    background-color: #fbfcff;
    /* Light yellow background */
    border: 1px solid #f2e5b8;
    /* Lighter yellow border */
    padding: 20px;
    text-align: left;
    margin-top: 20px;
}

.story-features{
	background-color:#fff;
	padding: 15px;
	border-radius:8px;
}


#important-info p {
    margin: 0 0 10px;
    /* Small margin for paragraph */
    color: #333;
    /* Dark text color */
    font-weight: bold;
    /* Bold font for emphasis */
}

#availability-button {
    display: inline-block;
    background-color: #2a68ff;
    /* Orange background */
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    border-radius: 5px;
    /* Rounded corners */
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
    /* Slight shadow for depth */
}

#availability-button:hover {
    background-color: #034cff;
    /* Darker orange on hover */
    cursor: pointer;
}

#expert-profile {
    display: flex;
    align-items: center;
    background-color:#fbfcff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
}

#expert-profile img {

    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
}


#expert-info h2 {
    margin: 0;
    color: #333333;
    font-size: 24px;
}

#expert-info h3 {
    margin: 5px 0;
    color: #666666;
}

#expert-info p {
    color: #333333;
    line-height: 1.5;
}


  /* FAQ css */

#faq-section details {
  margin-bottom: 1.5em;
  border-left: 4px solid #007BFF;
  background-color: #f9f9f9;
  border-radius: 5px;
}

#faq-section summary {
  font-size: 16px;
  font-weight: 600;
  padding: 1em;
  cursor: pointer;
}

#faq-section summary::-webkit-details-marker {
  display: none;
}

#faq-section summary:after {
  content: "+";
  float: right;
  font-size: 14px;
  transition: all 0.3s ease;
}

#faq-section details[open] summary:after {
  transform: rotate(45deg);
}

#faq-section p {
  padding: 0 1em 1em 1em;
  margin: 0;
  border-top: 1px solid #ccc;
  line-height: 1.6;
}


