@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

.roboto-thin {
    font-family: "Roboto", sans-serif;
    font-weight: 100;
    font-style: normal;
  }
  
  .roboto-light {
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-style: normal;
  }
  
  .roboto-regular {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  
  .roboto-medium {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-style: normal;
  }
  
  .roboto-bold {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-style: normal;
  }
  
  .roboto-black {
    font-family: "Roboto", sans-serif;
    font-weight: 900;
    font-style: normal;
  }
  
  .roboto-thin-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 100;
    font-style: italic;
  }
  
  .roboto-light-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-style: italic;
  }
  
  .roboto-regular-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: italic;
  }
  
  .roboto-medium-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-style: italic;
  }
  
  .roboto-bold-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-style: italic;
  }
  
  .roboto-black-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 900;
    font-style: italic;
  }
  

:root {
    --primary-color: #0a2540;
    --secondary-color: #ff5722;
    --accent-color: #00d4ff;
    --background-color: #f8f9fa;
    --text-color: #0a2540;
    --light-text-color: #ffffff;
    --deep-bronze: #611a1a;
    --dark-blue: #051b30;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    font-size: 16px;
    margin: 0 auto;
}

.top-banner {
    background-color: var(--primary-color);
    color: var(--light-text-color);
    text-align: center;
    padding: 0.5rem;
    font-weight: 400;
}

header {
    background-color: var(--light-text-color);
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#product-summary {
    padding: 4rem 0 0 0;
    text-align: center;
    font-weight: 300;
}

#product-summary h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 300;
}

#product-summary p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    color: var(--text-color);
    font-weight: 300;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.cta-button {
    display: inline-block;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: var(--light-text-color);
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.login-button {
    background: var(--accent-color);
    color: var(--primary-color);
}

main {
    padding: 2rem;
}

section {
    margin-bottom: 4rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

#hero {
    margin-bottom: 4rem;
    background: linear-gradient(335deg, var(--deep-bronze), var(--light-text-color));
    color: var(--text-color);
    border-radius: 20px;
    border: 2px solid var(--deep-bronze);
    overflow: hidden;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    width: 100%;
}

.hero-text {
    flex: 1;
    padding: 4rem 2rem;
}

.hero-image {
    flex: 1;
    position: relative;
    min-width: 50%;
    border-radius: 0;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.rating {
    margin-bottom: 1rem;
}

.stars {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.score {
    font-weight: 600;
    margin-left: 0.5rem;
}

.shipping, .guarantee {
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-item {
    background: linear-gradient(135deg, #f5e6d3, #ffffff);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid var(--deep-bronze);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.pricing-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.pricing-item p {
    font-size: 1rem;
    color: #666;
}

.pricing-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.pricing-item input[type="radio"] {
    display: none;
}

.pricing-item label {
    cursor: pointer;
    display: block;
    padding: 1rem;
    border-radius: 5px;
    background-color: var(--background-color);
    color: var(--text-color);
    font-weight: bold;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.pricing-item input[type="radio"]:checked + label {
    background-color: var(--dark-blue);
    color: var(--light-text-color);
}

.pricing-item input[type="radio"]:checked ~ .pricing-item {
    transform: scale(1.05);
    border-color: var(--accent-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.purchase-button {
    margin-top: auto;
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--secondary-color);
    color: var(--light-text-color);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.purchase-button:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 1.5rem 0;
    color: var(--primary-color);
}

.price span {
    font-size: 1rem;
    font-weight: normal;
    color: var(--text-color);
}

.pricing-item ul {
    list-style: none;
    margin-bottom: 1.5rem;
    text-align: left;
}

.pricing-item ul li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
}

.pricing-item ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.faq-item {
    text-align: left;
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

footer {
    background-color: var(--primary-color);
    color: var(--light-text-color);
    text-align: center;
    padding: 2rem 0;
    margin-top: 4rem;
    border-radius: 50px 50px 0 0;
}

#features {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin: 3rem auto 0;
    padding: 0 2rem;
}

.feature-item {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.feature-content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.feature-item-blank {
    border: 2px dashed #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    color: #999;
}

.feature-item-blank::after {
    content: "Coming Soon";
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

#cta {
    text-align: center;
    background-color: var(--primary-color);
    color: var(--light-text-color);
    padding: 4rem 2rem;
    border-radius: 15px;
    margin-top: 4rem;
}

#cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

#cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

#cta .cta-button {
    font-size: 1.2rem;
    padding: 1rem 2rem;
}

.testimonial-item {
    background-color: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.testimonial-item p {
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-item .author {
    font-weight: bold;
    color: var(--primary-color);
}

footer {
    background-color: var(--primary-color);
    color: var(--light-text-color);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-section {
    flex: 1;
    margin-right: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--light-text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease-in-out;
}

.hero-img:hover {
    transform: scale(1.05);
}
