/* General Page Styles */
.page-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  color: #333;
  line-height: 1.6;
}

.page-header {
  text-align: center;
  margin-bottom: 40px;
}

.page-header h1 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 15px;
}

.page-header p {
  font-size: 1.1rem;
  color: #7f8c8d;
  max-width: 700px;
  margin: 0 auto;
}

/* Contact Page Styles */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 30px;
}

.contact-form {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-form h2 {
  margin-top: 0;
  color: #2c3e50;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
}

.form-group textarea {
  min-height: 150px;
}

.submit-btn {
  background: #3498db !important;
  color: white !important;
  border: none;
  padding: 12px 25px;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s;
}

.submit-btn:hover {
  background: #2980b9;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.info-card {
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.info-card img {
  height: 50px;
  margin-bottom: 15px;
}

.info-card h3 {
  margin: 0 0 10px;
  color: #2c3e50;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
}

.social-icon {
  width: 40px;
  height: 40px;
  display: inline-block;
}

.contact-faq {
  margin-top: 50px;
  text-align: center;
  padding: 20px;
  background: #f8f9fa !important;
  border-radius: 8px;
}

/* FAQ Page Styles */
.faq-search {
  display: flex;
  max-width: 600px;
  margin: 0 auto 30px;
}

.faq-search input {
  flex: 1;
  padding: 12px 15px;
  border: 1px solid #ddd !important;
  border-radius: 4px 0 0 4px;
  font-size: 1rem;
}

.faq-search button {
  padding: 0 20px;
  background: #3498db !important;
  color: white !important;
  border: none;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
}

.faq-categories {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.category-btn {
  padding: 8px 16px;
  background: #ecf0f1 !important;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s;
}

.category-btn.active {
  background: #3498db !important;
  color: white !important;
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #eee !important;
  padding: 20px 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.2rem;
}

.toggle-icon {
  font-size: 1.5rem;
  font-weight: bold;
}

.faq-answer {
  padding-top: 15px;
  display: none;
}

.faq-answer p {
  margin: 0;
}

.faq-contact-cta {
  text-align: center;
  margin-top: 40px;
  padding: 20px;
  background: #f8f9fa !important;
  border-radius: 8px;
}

/* Shipping Policy Styles */
.shipping-content {
  max-width: 900px;
  margin: 0 auto;
}

.shipping-card {
  background: #fff !important;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
}

.shipping-option {
  margin: 25px 0;
  padding-left: 20px;
  border-left: 3px solid #3498db !important;
}

.shipping-option h3 {
  margin-top: 0;
  color: #2c3e50 !important;
}

.shipping-expectations {
  margin: 40px 0;
}

.expectation-item {
  display: flex;
  margin-bottom: 25px;
}

.expectation-number {
  background: #3498db;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.expectation-content h3 {
  margin: 0 0 10px;
  color: #2c3e50;
}

.shipping-note {
  padding: 15px;
  background: #fff8e1;
  border-left: 4px solid #ffc107;
  margin: 30px 0;
}

/* Returns & Refunds Styles */
.returns-process {
  margin-bottom: 50px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.step {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.step-number {
  background: #3498db;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  font-weight: bold;
}

.step-content h3 {
  margin: 0 0 10px;
  color: #2c3e50;
}

.returns-policy-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 40px 0;
}

.policy-card {
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.policy-card h3 {
  margin-top: 0;
  color: #2c3e50;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

.policy-card ul {
  padding-left: 20px;
}

.policy-card li {
  margin-bottom: 8px;
}

.returns-assistance {
  text-align: center;
  padding: 30px;
  background: #f8f9fa;
  border-radius: 8px;
  margin-top: 40px;
}

/* Track Order Styles */
.tracking-instructions {
  margin-bottom: 50px;
}

.instruction-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.instruction {
  text-align: center;
  padding: 25px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.instruction img {
  height: 60px;
  margin-bottom: 20px;
}

.instruction h3 {
  margin: 0 0 15px;
  color: #2c3e50;
}

.tracking-tips {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.tip-card {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.tip-card h3 {
  margin-top: 0;
  color: #2c3e50;
}

.tracking-help {
  text-align: center;
  padding: 30px;
  background: #f8f9fa;
  border-radius: 8px;
  margin-top: 40px;
}

/* Size Guide Styles */
.size-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

.size-tab {
  padding: 10px 20px;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  font-weight: 600;
  color: #7f8c8d;
  transition: all 0.3s;
}

.size-tab.active {
  color: #3498db;
  border-bottom-color: #3498db;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.size-tables {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 30px 0;
}

.size-table {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  overflow-x: auto;
}

.size-table h3 {
  margin-top: 0;
  color: #2c3e50;
}

.size-table table {
  width: 100%;
  border-collapse: collapse;
}

.size-table th,
.size-table td {
  padding: 10px;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.size-table th {
  background: #f8f9fa;
  font-weight: 600;
}

.measuring-guide {
  margin: 40px 0;
}

.measure-step {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.measure-step img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
  margin-right: 20px;
}

.size-disclaimer {
  padding: 15px;
  background: #fff8e1;
  border-left: 4px solid #ffc107;
  margin: 30px 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .returns-policy-details,
  .size-tables {
    grid-template-columns: 1fr;
  }

  .instruction-steps {
    grid-template-columns: 1fr;
  }
}

/* Add animations */
.faq-item {
  transition: all 0.3s ease;
}

.faq-item:hover {
  background-color: #f8f9fa;
}
