/* Premium Profile Layout */
.premium-profile-layout {
  font-family: 'Arial', 'Helvetica', sans-serif;
  line-height: 1.6;
  color: #333;
  margin-top: -2rem; /* Compensate for page header */
}

/* Premium Header Styles */
.premium-header {
  background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
  color: white;
  padding: 2rem 0;
  position: relative;
  overflow: hidden;
}

.premium-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.premium-header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 2rem;
  align-items: center;
}

.premium-logo-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.premium-logo img {
  max-width: 100%;
  max-height: 100%;
  /*! object-fit: contain; */

}

.premium-slogan .slogan-text {
  font-size: 0.9rem;
  font-weight: 300;
  opacity: 0.9;
}


.premium-main-message {
  text-align: center;
}

.main-title {
  font-size: 3rem;
  font-weight: 900;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.8);
  letter-spacing: -0.02em;
}

.guarantee-text {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0.5rem 0 0 0;
  opacity: 0.95;
}

.premium-navigation {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.nav-button:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
  text-decoration: none;
}

.nav-button i {
  font-size: 0.8rem;
}


/* Main Content Area */
.premium-main-content {
  background: white;
  min-height: 60vh;
}

.content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* Company Content */
.company-content {
  padding-right: 2rem;
}

.company-name {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 1rem 0;
  line-height: 1.2;
}

.company-mission {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 1.5rem 0;
  line-height: 1.4;
}

.company-description {
  color: #374151;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.company-description p {
  margin-bottom: 1rem;
}

.contact-manufacturer-btn {
  display: inline-block;
  background: #1f2937;
  color: white;
  padding: 1rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 2px solid #1f2937;
}

.contact-manufacturer-btn:hover {
  background: white;
  color: #1f2937;
  text-decoration: none;
}

/* Premium Partner Sidebar */
.premium-partner-sidebar {
  position: sticky;
  top: 2rem;
}

.premium-partner-box {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
}

.premium-badges {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.premium-star {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ff6b35;
}

.verified-check {
  font-size: 1rem;
  font-weight: 600;
  color: #10b981;
}

.company-details {
  margin-bottom: 2rem;
}

.detail-item {
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.detail-item strong {
  color: #1f2937;
  font-weight: 600;
}

.website-link {
  color: #2563eb;
  text-decoration: none;
  word-break: break-all;
}

.website-link:hover {
  text-decoration: underline;
}

.social-media-links {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #374151;
  color: white;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #1f2937;
  color: white;
  text-decoration: none;
  transform: translateY(-2px);
}

.social-link i {
  font-size: 1.1rem;
}

/* Product Highlights Section */
.product-highlights-section {
  background: #f8f9fa;
  padding: 3rem 0;
  margin-top: 2rem;
}

.highlights-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 2rem;
}

.product-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.product-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f3f4f6;
}

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

.product-content {
  padding: 1.5rem;
}

.product-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 1rem 0;
  line-height: 1.3;
}

.product-description {
  color: #6b7280;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.product-detail-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #ff0000;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.product-detail-link:hover {
  color: #cc0000;
  text-decoration: none;
}

.product-detail-link i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.product-detail-link:hover i {
  transform: translateX(4px);
}

/* Premium Footer Styles */
.premium-footer {
  background: #1f2937;
  color: white;
  padding: 3rem 0 1rem 0;
  margin-top: 3rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.footer-section p {
  color: #d1d5db;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 1rem;
  text-align: center;
}

.footer-bottom p {
  color: #9ca3af;
  margin: 0;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .premium-header-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }
  
  .premium-logo-section {
    align-items: center;
  }
  
  .premium-navigation {
    justify-content: center;
  }
  
  .content-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .company-content {
    padding-right: 0;
  }
  
  .premium-partner-sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  .premium-header {
    padding: 1.5rem 0;
  }
  
  .premium-header-content {
    padding: 0 1rem;
  }
  
  .main-title {
    font-size: 2rem;
  }
  
  .premium-navigation {
    flex-direction: column;
    align-items: center;
  }
  
  .nav-button {
    width: 100%;
    max-width: 200px;
    justify-content: center;
  }
  
  .content-wrapper {
    padding: 2rem 1rem;
  }
  
  .company-name {
    font-size: 2rem;
  }
  
  .product-grid {
    grid-template-columns: 1fr;
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .main-title {
    font-size: 1.5rem;
  }
  
  .guarantee-text {
    font-size: 1rem;
  }
  
  .company-name {
    font-size: 1.75rem;
  }
  
  .premium-partner-box {
    padding: 1.5rem;
  }
  
  .product-content {
    padding: 1rem;
  }
}
