/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #ffffff;
}

.container {
  max-width: 100vw;
  /* margin: 0 auto; */
  /* padding: 0 15px; */
}

/* Header Section */
header {
  background: #ffffff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: relative;
  z-index: 1000;
}

.top-header {
  padding: 10px 0;
  border-bottom: 1px solid #e5e5e5;
}

.top-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo img {
  height: 45px;
}

.tagline {
  font-size: 12px;
  color: #666;
  font-weight: normal;
}

.red-tag {
  background: #ff0000;
  color: white;
  padding: 2px 6px;
  border-radius: 2px;
  font-size: 11px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.main-nav a {
  text-decoration: none;
  color: #2c3e50;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.3s;
}

.main-nav a:hover {
  color: #3498db;
}

.main-nav i {
  font-size: 10px;
}

/* Hero Section */
.hero {
  width: 100%;
  height: 100vh; /* Full viewport height */
  overflow: hidden;
  position: relative;
  margin: 0;
  padding: 0;
}

.hero .container {
  height: 100%;
  padding: 0;
  margin: 0;
  max-width: 100%;
}

.hero-images {
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
}

.hero-images img {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  display: block;
}

/* Product Navigation Bar */
.product-nav {
  background: #f8f9fa;
  padding: 8px 0;
  border-bottom: 1px solid #e5e5e5;
}

.product-nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-links {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.product-links a {
  text-decoration: none;
  color: #555;
  font-size: 12px;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s;
}

.product-links a:hover {
  color: #3498db;
  border-bottom-color: #3498db;
}

.christmas-tag {
  background: #dc3545;
  color: white !important;
  padding: 3px 10px;
  border-radius: 3px;
  font-weight: bold;
}

.search-box {
  background: #fff;
  padding: 8px;
  border-radius: 4px;
  cursor: pointer;
}

.search-box i {
  font-size: 16px;
  color: #666;
}

/* Hero Section */
.hero {
  background: #1e3a8a;
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
  color: white;
  padding: 0;
  position: relative;
  overflow: hidden;
  min-height: 500px;
  height: 600px;
  display: flex;
  align-items: stretch;
}

.hero .container {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  position: relative;
  z-index: 2;
}

.hero-content {
  flex: 1;
  padding-right: 40px;
}

.hero-content h1 {
  font-size: 80px;
  font-weight: 900;
  line-height: 0.9;
  margin-bottom: 30px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.price-tag {
  font-size: 22px;
  position: relative;
  display: inline-block;
}

.old-price {
  text-decoration: line-through;
  color: rgba(255,255,255,0.7);
  font-size: 20px;
}

.new-price {
  font-size: 56px;
  font-weight: 900;
  display: block;
  margin-top: 5px;
  background: #dc3545;
  padding: 10px 30px 10px 50px;
  position: relative;
  clip-path: polygon(25% 0%, 100% 0%, 85% 100%, 0% 100%);
  margin-left: -20px;
}

.hero-images {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  align-items: stretch;
  height: 100%;
}

.hero-images img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
  overflow: hidden;
}

/* Features Bar */
.features-bar {
  background: #1a1a1a;
  padding: 15px 0;
}

.features-bar .container {
  display: flex;
  align-items: center;
  gap: 30px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-size: 13px;
}

.feature i {
  color: #28a745;
  font-size: 16px;
}

.feature.green {
  background: #28a745;
  padding: 8px 16px;
  border-radius: 4px;
  margin-left: auto;
}

/* Product Categories Section */
.categories {
  padding: 50px 0;
  background: #f8f9fa;
}

.categories h2 {
  text-align: left;
  margin-bottom: 30px;
  font-size: 22px;
  color: #1e3a8a;
  font-weight: 600;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.product-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: all 0.3s;
  border: 1px solid #e5e5e5;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

/* Remove left and right padding for product images */
.product-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  background: none;
  padding-left: 0;
  padding-right: 0;
  margin-left: 0;
  margin-right: 0;
  display: block;
}

.product-card h3 {
  font-size: 22px;
  font-weight: 600;
  color: #333;
  margin: 15px 15px 8px;
  line-height: 1.3;
}

.product-card .price {
  color: #1e3a8a;
  font-weight: 600;
  font-size: 14px;
  margin: 0 15px 8px;
}

.product-card .description {
  font-size: 12px;
  color: #666;
  margin: 0 15px 15px;
  line-height: 1.5;
}

.card-footer {
  border-top: 1px solid #e5e5e5;
  padding: 12px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fafafa;
}

.category {
  font-size: 11px;
  color: #888;
  font-weight: 500;
}

.shop-btn {
  background: #005385;
  color: #fff;
  border: none;
  padding: 7px 22px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  box-shadow: none;
  outline: none;
  transition: background 0.2s;
  display: inline-block;
}
.shop-btn:hover, .shop-btn:focus {
  background: #003f63;
  color: #fff;
}

/* Reviews Section */
.reviews {
  padding: 50px 0;
  background: white;
}

.reviews h2 {
  text-align: left;
  margin-bottom: 30px;
  font-size: 22px;
  color: #1e3a8a;
  font-weight: 600;
}

.trustpilot-rating {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

.star-icon {
  font-size: 50px;
  color: #00b67a;
}

.rating-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trustpilot {
  font-size: 20px;
  font-weight: 600;
}

.stars {
  color: #00b67a;
  font-size: 18px;
}

.score {
  font-size: 20px;
  font-weight: 600;
}

.review-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.review-card {
  padding: 0;
  background: transparent;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.review-header .stars {
  color: #00b67a;
  font-size: 14px;
}

.reviewer {
  font-size: 13px;
  color: #666;
}

.review-card h4 {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.review-card p {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
}

.review-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.review-detail {
  background: white;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 25px;
  text-align: left;
}

.review-detail h5 {
  font-size: 12px;
  color: #666;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.review-detail .stars {
  color: #fbbf24;
  font-size: 16px;
  margin-bottom: 10px;
}

.review-detail img {
  height: 20px;
  margin: 10px 0;
}

.warning-icon {
  font-size: 24px;
  color: #fbbf24;
  margin: 10px 0;
}

.reviewer-info p {
  font-size: 13px;
  color: #333;
  margin-bottom: 8px;
  line-height: 1.5;
}

.reviewer-info p:first-child {
  font-weight: 600;
}

/* Footer */
footer {
  background: #0f172a;
  color: #cbd5e1;
  padding: 50px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 50px;
  margin-bottom: 30px;
}

.footer-brand img {
  height: 40px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer-brand h3 {
  font-size: 18px;
  color: white;
  margin-bottom: 15px;
  line-height: 1.4;
  font-weight: 600;
}

.footer-brand p {
  font-size: 13px;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-brand a {
  color: #3b82f6;
  text-decoration: none;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  width: 36px;
  height: 36px;
  background: #1e293b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 14px;
}

.social-links a:hover {
  background: #3b82f6;
  color: white;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.link-column h4 {
  font-size: 14px;
  margin-bottom: 15px;
  color: white;
  font-weight: 600;
}

.link-column a {
  display: block;
  color: #94a3b8;
  text-decoration: none;
  font-size: 13px;
  margin-bottom: 8px;
  transition: color 0.3s;
}

.link-column a:hover {
  color: white;
}

.link-column p {
  font-size: 13px;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 8px;
}

.footer-bottom {
  border-top: 1px solid #1e293b;
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: #64748b;
  margin-bottom: 5px;
}

.footer-bottom a {
  color: #3b82f6;
  text-decoration: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .product-grid {
      grid-template-columns: repeat(3, 1fr);
  }
  
  .hero-content h1 {
      font-size: 60px;
  }
  
  .new-price {
      font-size: 48px;
  }
}

@media (max-width: 768px) {
  .main-nav {
      display: none;
  }
  
  .product-links {
      display: none;
  }
  
  .hero .container {
      flex-direction: column;
      text-align: center;
  }
  
  .hero-content {
      padding-right: 0;
      margin-bottom: 30px;
  }
  
  .hero-content h1 {
      font-size: 48px;
  }
  
  .hero-images {
      justify-content: center;
  }
  
  .hero-images img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
  }
  
  .features-bar .container {
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
  }
  
  .feature.green {
      margin-left: 0;
  }
  
  .product-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 15px;
  }
  
  .review-cards {
      grid-template-columns: 1fr;
  }
  
  .review-details {
      grid-template-columns: 1fr;
  }
  
  .footer-content {
      grid-template-columns: 1fr;
  }
  
  .footer-links {
      grid-template-columns: 1fr;
      gap: 20px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
      font-size: 36px;
  }
  
  .new-price {
      font-size: 36px;
      padding: 8px 20px 8px 30px;
  }
  
  .product-grid {
      grid-template-columns: 1fr;
  }
  
  .hero-images img {
      height: 150px;
  }
}

/* Additional Specific Styles to Match Design */

/* Make header sticky */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Exact color matching */
.hero {
  background: #1e3c72;
  background: linear-gradient(to right, #1e3c72, #2a5298);
}

/* Product card hover effects */
.product-card {
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.product-card:hover::before {
  left: 100%;
}

/* Price tag arrow shape */
.new-price {
  position: relative;
  display: inline-block;
}

.new-price::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 38px 0 38px 30px;
  border-color: transparent transparent transparent #1e3c72;
}

/* Trustpilot specific styling */
.trustpilot-rating {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  display: inline-flex;
  margin-bottom: 30px;
}

/* Button animations */
.shop-btn {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.shop-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #2563eb;
  transition: left 0.3s;
  z-index: -1;
}

.shop-btn:hover::before {
  left: 0;
}

/* Navigation dropdown indicators */
.main-nav a i {
  transition: transform 0.3s;
}

.main-nav a:hover i {
  transform: rotate(180deg);
}

/* Search box styling */
.search-box {
  border: 1px solid #e5e5e5;
  transition: all 0.3s;
}

.search-box:hover {
  background: #f0f0f0;
  border-color: #d0d0d0;
}

/* Category tags styling */
.category {
  background: #f0f0f0;
  padding: 2px 8px;
  border-radius: 3px;
  display: inline-block;
}

/* Review cards specific styling */
.review-card {
  border-left: 3px solid transparent;
  padding-left: 15px;
  transition: all 0.3s;
}

.review-card:hover {
  border-left-color: #00b67a;
}

/* Footer link hover effects */
.link-column a {
  position: relative;
}

.link-column a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: white;
  transition: width 0.3s;
}

.link-column a:hover::after {
  width: 100%;
}

/* Christmas tag animation */
.christmas-tag {
  position: relative;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
      transform: scale(1);
  }
  50% {
      transform: scale(1.05);
  }
  100% {
      transform: scale(1);
  }
}

/* Product image hover zoom */
.product-card img {
  transition: none;
}

.product-card:hover img {
  transform: none;
}

/* Feature bar icons */
.feature i {
  font-size: 18px;
}

/* Typography adjustments */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  color: #2c3e50;
}

/* Link styles */
a {
  transition: all 0.3s;
}

/* Form elements (for future use) */
input, textarea, select {
  border: 1px solid #e5e5e5;
  padding: 10px;
  border-radius: 4px;
  font-size: 14px;
  width: 100%;
  transition: all 0.3s;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Utility classes */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mt-20 {
  margin-top: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

.pt-20 {
  padding-top: 20px;
}

.pb-20 {
  padding-bottom: 20px;
}

/* Loading states */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

/* Print styles */
@media print {
  header, footer, .features-bar {
      display: none;
  }
  
  .product-card {
      break-inside: avoid;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .product-card {
      border: 2px solid #000;
  }
  
  .shop-btn {
      border: 2px solid #000;
  }
}

/* Dark mode support (optional) */
@media (prefers-color-scheme: dark) {
  /* Add dark mode styles here if needed */
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* Selection color */
::selection {
  background: #3b82f6;
  color: white;
}

::-moz-selection {
  background: #3b82f6;
  color: white;
}

/* Redesigned Features Bar */
.features-bar {
  background: #0a2342;
  padding: 0;
  margin: 0;
}
.features-bar .container {
  display: flex;
  align-items: center;
  gap: 0;
  justify-content: flex-start;
  padding: 0;
}
.feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  padding: 0 18px;
  height: 48px;
  border-radius: 0;
  background: none;
}
.feature i {
  color: #00bfae;
  font-size: 20px;
}
.feature.green {
  background: #19c37d;
  color: #fff;
  border-radius: 24px;
  padding: 0 28px;
  margin-left: 12px;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  align-items: center;
  height: 38px;
}
.feature.green:last-child {
  background: none;
  color: #ffe600;
  font-weight: 700;
  margin-left: 0;
  padding: 0 18px;
  border-radius: 0;
  font-size: 17px;
}
@media (max-width: 900px) {
  .features-bar .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .feature, .feature.green {
    width: 100%;
    justify-content: flex-start;
    margin: 0;
    border-radius: 0;
    padding: 0 10px;
  }
}

.custom-banner {
  display: flex;
  align-items: center;
  border: 1.5px solid #e0e0e0;
  border-radius: 2px;
  overflow: hidden;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.35vw;
  min-height: 60px;
  background: #071423;
  margin-bottom: 24px;
}

.banner-left {
  display: flex;
  align-items: center;
  background: #071423;
  padding: 0 2vw;
  flex: 2;
  gap: 2vw;
}

.banner-item {
  display: flex;
  align-items: center;
  color: #fff;
  font-weight: 500;
  gap: 0.5vw;
  white-space: nowrap;
}

.check-icon {
  display: flex;
  align-items: center;
  margin-right: 0.5vw;
}

.banner-right {
  display: flex;
  align-items: center;
  background: #16a34a;
  padding: 0 2vw;
  border-top-left-radius: 40px;
  border-bottom-left-radius: 40px;
  flex: 1.5;
  gap: 1vw;
  min-height: 60px;
}

.banner-artwork {
  color: #fff;
  font-weight: 500;
  margin-right: 1vw;
  white-space: nowrap;
}

.banner-guarantee {
  color: #ffd600;
  font-weight: 700;
  margin-left: 1vw;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .custom-banner {
    font-size: 2.5vw;
    flex-direction: column;
    min-height: 80px;
  }
  .banner-left, .banner-right {
    padding: 1vw 2vw;
    border-radius: 0;
  }
  .banner-right {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
}

@media (max-width: 600px) {
  .custom-banner {
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 10px !important;
    min-height: 28px !important;
    padding: 2px 0 !important;
    gap: 4px !important;
    flex-wrap: wrap !important;
    min-width: 0 !important;
    overflow-x: hidden !important;
    white-space: normal !important;
  }
  .banner-left, .banner-right {
    flex-direction: row !important;
    align-items: center !important;
    padding: 0 1vw !important;
    gap: 4px !important;
    border-radius: 0 !important;
  }
  .banner-item, .banner-artwork, .banner-guarantee {
    font-size: 10px !important;
    margin: 0 !important;
    white-space: nowrap !important;
    padding: 0 1px !important;
  }
  .check-icon svg {
    width: 13px !important;
    height: 13px !important;
  }
}

/* Product Banner Text Styles (matches product card) */
.product-banner-text {
  font-family: Arial, Helvetica, sans-serif;
}
.product-banner-title {
  font-size: 22px;
  font-weight: 600;
  color: #333;
  line-height: 1.3;
}
.product-banner-price {
  color: #1e3a8a;
  font-weight: 600;
  font-size: 14px;
}
.product-banner-description {
  font-size: 12px;
  color: #666;
  line-height: 1.5;
}
.product-banner-category {
  font-size: 11px;
  color: #888;
  font-weight: 500;
}
.product-banner-btn {
  background: #1e3a8a;
  color: white;
  border: none;
  padding: 6px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 500;
  transition: all 0.3s;
}
.product-banner-btn:hover {
  background: #2563eb;
}

@media (max-width: 600px) {
  .container {
    max-width: 100vw;
    padding: 0 4vw;
  }
  .hero {
    background: #fff !important;
    min-height: auto !important;
    height: auto !important;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
  .hero .container {
    flex-direction: column;
    align-items: center;
    height: auto;
    padding: 0;
  }
  .hero-images {
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    overflow: visible !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }
  .hero-images img {
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    object-fit: contain !important;
    display: block !important;
    max-width: 100vw !important;
  }
  .hero-content {
    padding: 0;
    margin-bottom: 10px;
    text-align: center;
  }
  .hero-content h1 {
    font-size: 28px;
    margin-bottom: 10px;
  }
  .price-tag {
    font-size: 16px;
  }
  .new-price {
    font-size: 22px;
    padding: 6px 12px 6px 18px;
    margin-left: 0;
  }
  .categories {
    padding: 20px 0;
  }
  .categories h2 {
    font-size: 18px;
    margin-bottom: 16px;
  }
  .product-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 16px;
  }
  .product-card {
    border-radius: 6px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  }
  .product-card img {
    height: 160px;
  }
  .product-card h3 {
    font-size: 16px;
    margin: 10px 10px 6px;
  }
  .product-card .price {
    font-size: 12px;
    margin: 0 10px 6px;
  }
  .product-card .description {
    font-size: 11px;
    margin: 0 10px 10px;
  }
  .card-footer {
    padding: 8px 10px;
    flex-direction: column;
    gap: 6px;
  }
  .category {
    font-size: 10px;
    margin-bottom: 2px;
  }
  .shop-btn {
    font-size: 11px;
    padding: 5px 12px;
  }
  .reviews {
    padding: 20px 0;
  }
  .reviews h2 {
    font-size: 16px;
    margin-bottom: 12px;
  }
  .review-cards {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .review-card h4 {
    font-size: 12px;
  }
  .review-card p {
    font-size: 11px;
  }
  .footer-content {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .footer-links {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .footer-brand h3 {
    font-size: 14px;
  }
  .footer-brand p, .link-column p, .link-column a {
    font-size: 11px;
  }
  .footer-bottom p {
    font-size: 10px;
  }
  .custom-banner {
    flex-direction: column;
    font-size: 3vw;
    min-height: 40px;
    padding: 6px 0;
  }
  .banner-left, .banner-right {
    padding: 2vw 2vw;
    flex-direction: column;
    gap: 1vw;
  }
  .banner-artwork, .banner-guarantee {
    font-size: 12px;
    margin: 0;
  }
}

/* Trustpilot Review Section (New, at bottom) */
.trustpilot-section {
  background: #fafbfc;
  padding: 32px 0 48px 0;
}
.trustpilot-title {
  color: #184d7a;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 18px;
  margin-left: 8px;
}
.trustpilot-box {
  background: #fff;
  border: 1.5px solid #e5e5e5;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  padding: 32px 32px 24px 32px;
  max-width: 98vw;
  margin: 0 auto;
}
.trustpilot-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 12px;
}
.trustpilot-star-large {
  font-size: 90px;
  color: #00b67a;
  font-weight: bold;
  line-height: 1;
}
.trustpilot-info {
  display: flex;
  align-items: center;
  gap: 10px;
}
.trustpilot-logo {
  font-size: 22px;
  font-weight: 700;
  color: #222;
  margin-right: 2px;
}
.trustpilot-stars {
  color: #00b67a;
  font-size: 22px;
  letter-spacing: 2px;
}
.trustpilot-score {
  font-size: 22px;
  font-weight: 700;
  color: #222;
  margin-left: 4px;
}
.trustpilot-divider {
  border: none;
  border-top: 1px solid #e5e5e5;
  margin: 24px 0 18px 0;
}
.trustpilot-reviews-row {
  display: flex;
  gap: 32px;
  justify-content: space-between;
  margin-bottom: 0;
}
.trustpilot-review-card {
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.trustpilot-review-badge {
  color: #00b67a;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}
.trustpilot-review-badge span {
  color: #184d7a;
  font-weight: 600;
  margin-left: 6px;
}
.trustpilot-review-title {
  font-size: 15px;
  font-weight: 700;
  color: #222;
  margin-bottom: 6px;
}
.trustpilot-review-text {
  font-size: 14px;
  color: #444;
  line-height: 1.5;
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  .trustpilot-box {
    padding: 18px 8px 12px 8px;
  }
  .trustpilot-review-card {
    margin-bottom: 18px;
  }
  .trustpilot-header {
    gap: 12px;
  }
  .trustpilot-star-large {
    font-size: 60px;
  }
}
@media (max-width: 768px) {
  .trustpilot-reviews-row {
    flex-direction: column;
    gap: 18px;
  }
  .trustpilot-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

.second-2-Image-1{
    width: 99vw;
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.second-2-Image{
    width: 100vw;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.second-2-Image-content{
    width: 95vw;
    height: 50vh;
    display: flex;
    align-items: center;    
    justify-content: space-between;
    flex-direction: row;
    gap: 10px;
}
.second-2-Image-1 img{
    width: 100%;
    object-fit: cover;
}
.contntent-1{
    width: 50vw;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.imagecont
{
    width: 40vw;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}