@charset "UTF-8";
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #333;
  overflow-x: hidden;
}

.section-title {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 3rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .nav-links {
    display: none;
  }
  .search-bar {
    width: 150px;
  }
}
.header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

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

.logo {
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}
.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}
.nav-links a:hover {
  color: #667eea;
  transform: translateY(-2px);
}

.nav-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.search-bar {
  background: rgba(255, 255, 255, 0.8);
  border: 2px solid transparent;
  border-radius: 25px;
  padding: 0.5rem 1.5rem;
  width: 250px;
  transition: all 0.3s ease;
}
.search-bar:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 20px rgba(102, 126, 234, 0.3);
}

.footer {
  background: #1a1a1a;
  color: #fff;
  padding: 3rem 0 2rem;
}

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

.footer-section h3 {
  margin-bottom: 1rem;
  color: #667eea;
}
.footer-section ul {
  list-style: none;
}
.footer-section li {
  margin-bottom: 0.5rem;
}
.footer-section a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-section a:hover {
  color: #667eea;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #333;
  color: #999;
}

.floating-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 2rem;
  animation: float 6s ease-in-out infinite;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}
.floating-card:nth-child(2) {
  animation-delay: -2s;
  position: absolute;
  top: -50px;
  right: -30px;
  transform: scale(0.8);
}
.floating-card:nth-child(3) {
  animation-delay: -4s;
  position: absolute;
  bottom: -30px;
  left: -50px;
  transform: scale(0.7);
}

.product-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}
.product-card .product-image {
  height: 250px;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  position: relative;
  overflow: hidden;
}
.product-card:nth-child(2) .product-image {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}
.product-card:nth-child(3) .product-image {
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}
.product-card:nth-child(4) .product-image {
  background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}
.product-card .product-info {
  padding: 1.5rem;
}
.product-card .product-name {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #333;
}
.product-card .product-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: #667eea;
  margin-bottom: 1rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}
.feature-card .feature-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.cart-btn,
.add-to-cart {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.cart-btn:hover,
.add-to-cart:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}
.cart-btn::before,
.add-to-cart::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;
}
.cart-btn:hover::before,
.add-to-cart:hover::before {
  left: 100%;
}

.add-to-cart {
  border-radius: 10px;
  width: 100%;
}

.cta-btn {
  background: #fff;
  color: #667eea;
  border: none;
  border-radius: 50px;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: fadeInUp 1s ease 0.4s both;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="%23ffffff08" points="0,1000 1000,0 1000,1000"/></svg>');
}
.hero .hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero .hero-text h1 {
  font-size: 4rem;
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  animation: fadeInUp 1s ease;
}
.hero .hero-text p {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  animation: fadeInUp 1s ease 0.2s both;
}
.hero .hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.products {
  background: #fff;
  padding: 6rem 0;
  position: relative;
}
.products .product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.features {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 50%, #4facfe 100%);
  padding: 6rem 0;
  color: #fff;
}
.features .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 2.5rem;
  }
}
body.page-template-template-about-us .header .nav-links a[href*=about] {
  color: #667eea;
}

.about-hero {
  min-height: 60vh;
  margin-top: 80px;
}
.about-hero .hero-content {
  text-align: center;
  color: #fff;
}
.about-hero .hero-content h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  animation: fadeInUp 1s ease;
}
.about-hero .hero-content p {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto;
  animation: fadeInUp 1s ease 0.2s both;
}

.story {
  padding: 6rem 0;
  background: #fff;
}
.story .story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.story .story-text h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.story .story-text p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #666;
  line-height: 1.6;
}
.story .story-visual {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  border-radius: 20px;
  height: 400px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.story .story-visual::before {
  content: "🚀";
  font-size: 4rem;
  animation: float 6s ease-in-out infinite;
}

.values {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  padding: 6rem 0;
  color: #fff;
}
.values .section-title {
  color: #fff;
}
.values .values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.values .value-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}
.values .value-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.2);
}
.values .value-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}
.values .value-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.stats {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 4rem 0;
  color: #fff;
}
.stats .stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}
.stats .stat-item h3 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.stats .stat-item p {
  font-size: 1.1rem;
  opacity: 0.9;
}

.team {
  padding: 6rem 0;
  background: #fff;
}
.team .team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}
.team .team-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}
.team .team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}
.team .team-photo {
  height: 300px;
  position: relative;
  overflow: hidden;
}
.team .team-photo::before {
  content: "👤";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 4rem;
  opacity: 0.7;
}
.team .team-card:nth-child(1) .team-photo {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.team .team-card:nth-child(2) .team-photo {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}
.team .team-card:nth-child(3) .team-photo {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}
.team .team-card:nth-child(4) .team-photo {
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}
.team .team-info {
  padding: 2rem;
}
.team .team-name {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #333;
}
.team .team-role {
  color: #667eea;
  font-weight: 500;
  margin-bottom: 1rem;
}
.team .team-description {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
}

.cta-section {
  background: #f8f9ff;
  padding: 6rem 0;
  text-align: center;
}
.cta-section .cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-section .cta-content p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.cta-section .cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-section .cta-btn.secondary {
  background: #fff;
  color: #667eea;
  border: 2px solid #667eea;
}
.cta-section .cta-btn.secondary:hover {
  background: #667eea;
  color: #fff;
}

@media (max-width: 768px) {
  .about-hero .hero-content h1 {
    font-size: 2.5rem;
  }
  .story-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}
.site-main.contact-page .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}
.site-main.contact-page {
  /* Hero Section */
}
.site-main.contact-page .hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 50vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin-top: 80px;
}
.site-main.contact-page .hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="%23ffffff08" points="0,1000 1000,0 1000,1000"/></svg>');
}
.site-main.contact-page .hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
  color: white;
}
.site-main.contact-page .hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  animation: fadeInUp 1s ease;
}
.site-main.contact-page .hero-content p {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto;
  animation: fadeInUp 1s ease 0.2s both;
}
.site-main.contact-page {
  /* Contact Methods */
}
.site-main.contact-page .contact-methods {
  padding: 4rem 0;
  background: white;
}
.site-main.contact-page .methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.site-main.contact-page .method-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.site-main.contact-page .method-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border-color: rgba(102, 126, 234, 0.2);
}
.site-main.contact-page .method-card:nth-child(1) .method-icon {
  background: linear-gradient(135deg, #667eea, #764ba2);
}
.site-main.contact-page .method-card:nth-child(2) .method-icon {
  background: linear-gradient(135deg, #f093fb, #f5576c);
}
.site-main.contact-page .method-card:nth-child(3) .method-icon {
  background: linear-gradient(135deg, #4facfe, #00f2fe);
}
.site-main.contact-page .method-card:nth-child(4) .method-icon {
  background: linear-gradient(135deg, #43e97b, #38f9d7);
}
.site-main.contact-page .method-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
}
.site-main.contact-page .method-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #333;
}
.site-main.contact-page .method-card p {
  color: #666;
  margin-bottom: 1.5rem;
}
.site-main.contact-page .method-link {
  color: #667eea;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}
.site-main.contact-page .method-link:hover {
  color: #764ba2;
}
.site-main.contact-page {
  /* Contact Form Section */
}
.site-main.contact-page .contact-form-section {
  background: linear-gradient(135deg, #f8f9ff 0%, #e8f2ff 100%);
  padding: 6rem 0;
}
.site-main.contact-page .form-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.site-main.contact-page .form-info h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.site-main.contact-page .form-info p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
}
.site-main.contact-page .info-items {
  list-style: none;
}
.site-main.contact-page .info-items li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #555;
}
.site-main.contact-page .info-items li::before {
  content: "✓";
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  font-size: 0.8rem;
  font-weight: bold;
}
.site-main.contact-page .contact-form {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(20px);
}
.site-main.contact-page .form-group {
  margin-bottom: 2rem;
}
.site-main.contact-page .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.site-main.contact-page .form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #333;
}
.site-main.contact-page .form-group input,
.site-main.contact-page .form-group select,
.site-main.contact-page .form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
}
.site-main.contact-page .form-group input:focus,
.site-main.contact-page .form-group select:focus,
.site-main.contact-page .form-group textarea:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 20px rgba(102, 126, 234, 0.1);
}
.site-main.contact-page .form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.site-main.contact-page .submit-btn {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 1rem 3rem;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.site-main.contact-page .submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
}
.site-main.contact-page .submit-btn::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;
}
.site-main.contact-page .submit-btn:hover::before {
  left: 100%;
}
.site-main.contact-page {
  /* FAQ Section */
}
.site-main.contact-page .faq-section {
  padding: 6rem 0;
  background: white;
}
.site-main.contact-page .section-title {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 3rem;
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.site-main.contact-page .faq-container {
  max-width: 800px;
  margin: 0 auto;
}
.site-main.contact-page .faq-item {
  margin-bottom: 1rem;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}
.site-main.contact-page .faq-question {
  background: #f8f9ff;
  padding: 1.5rem 2rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  position: relative;
}
.site-main.contact-page .faq-question:hover {
  background: #e8f2ff;
}
.site-main.contact-page .faq-question::after {
  content: "+";
  position: absolute;
  right: 2rem;
  font-size: 1.5rem;
  font-weight: normal;
  transition: transform 0.3s ease;
  color: #667eea;
}
.site-main.contact-page .faq-question.active::after {
  transform: rotate(45deg);
}
.site-main.contact-page .faq-answer {
  background: white;
  padding: 0 2rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}
.site-main.contact-page .faq-answer.active {
  padding: 1.5rem 2rem;
  max-height: 200px;
}
.site-main.contact-page .faq-answer p {
  color: #666;
  line-height: 1.6;
}
.site-main.contact-page {
  /* Map Section */
}
.site-main.contact-page .map-section {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  padding: 6rem 0;
  color: white;
  text-align: center;
}
.site-main.contact-page .map-placeholder {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
  position: relative;
  overflow: hidden;
}
.site-main.contact-page .map-placeholder::before {
  content: "️";
  font-size: 4rem;
  opacity: 0.7;
}
.site-main.contact-page .location-info {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  border-radius: 15px;
  padding: 1.5rem;
  text-align: left;
}
.site-main.contact-page {
  /* Animations */
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.site-main.contact-page {
  /* Success Message */
}
.site-main.contact-page .success-message {
  background: linear-gradient(135deg, #43e97b, #38f9d7);
  color: white;
  padding: 1rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  display: none;
  text-align: center;
  font-weight: 600;
}
.site-main.contact-page {
  /* Responsive */
}
@media (max-width: 768px) {
  .site-main.contact-page .hero-content h1 {
    font-size: 2.5rem;
  }
  .site-main.contact-page .form-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .site-main.contact-page .form-row {
    grid-template-columns: 1fr;
  }
  .site-main.contact-page .contact-form {
    padding: 2rem;
  }
}

body.page-template-template-products {
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
  color: #ffffff;
  /* Hero Section */
}
body.page-template-template-products .hero {
  text-align: center;
  padding: 4rem 0;
  background: radial-gradient(circle at center, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
}
body.page-template-template-products .hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ffffff 0%, #667eea 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
body.page-template-template-products .hero p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
}
body.page-template-template-products {
  /* Filters */
}
body.page-template-template-products .filters {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  justify-content: center;
  flex-wrap: wrap;
}
body.page-template-template-products .filter-btn {
  padding: 0.8rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}
body.page-template-template-products .filter-btn:hover,
body.page-template-template-products .filter-btn.active {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}
body.page-template-template-products {
  /* Product Grid */
}
body.page-template-template-products .products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}
body.page-template-template-products .product-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
}
body.page-template-template-products .product-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 60px rgba(102, 126, 234, 0.2);
  border-color: rgba(102, 126, 234, 0.5);
}
body.page-template-template-products .product-image {
  width: 100%;
  height: 250px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  overflow: hidden;
}
body.page-template-template-products .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
body.page-template-template-products .product-image:hover img {
  transform: scale(1.1);
}
body.page-template-template-products .product-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
body.page-template-template-products .product-category {
  font-size: 0.8rem;
  color: #667eea;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}
body.page-template-template-products .product-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
body.page-template-template-products .product-title a {
  color: #ffffff;
  text-decoration: none;
}
body.page-template-template-products .product-title a:hover {
  color: #667eea;
}
body.page-template-template-products .product-description {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
  line-height: 1.5;
  flex-grow: 1;
}
body.page-template-template-products .product-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}
body.page-template-template-products .price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
}
body.page-template-template-products .add_to_cart_button {
  padding: 0.6rem 1.2rem !important;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
  border: none;
  border-radius: 50px !important;
  color: #ffffff !important;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  text-align: center;
}
body.page-template-template-products .add_to_cart_button:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}
body.page-template-template-products .add_to_cart_button.loading {
  opacity: 0.5;
}
body.page-template-template-products .add_to_cart_button.added {
  display: none;
}
body.page-template-template-products a.added_to_cart {
  display: none !important;
}

/* Shop Header */
.shop-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.shop-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 0%, #667eea 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}

.woocommerce-result-count {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

/* Toolbar */
.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 1rem 1.5rem;
  backdrop-filter: blur(20px);
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.view-toggle {
  display: flex;
  gap: 0.5rem;
}

.view-btn {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.view-btn:hover, .view-btn.active {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-color: transparent;
  color: #ffffff;
}

.woocommerce-ordering {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.woocommerce-ordering .orderby {
  padding: 0.6rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: #ffffff;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
}

.woocommerce-ordering .orderby:hover {
  border-color: rgba(102, 126, 234, 0.5);
}

/* Products Layout */
.products-container {
  display: flex;
  gap: 2rem;
  margin-bottom: 4rem;
}

/* Sidebar */
.sidebar {
  width: 280px;
  flex-shrink: 0;
}

.sidebar-widget {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 1.5rem;
  backdrop-filter: blur(20px);
  margin-bottom: 1.5rem;
}

.widget-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
}

/* Products Grid */
.products-main {
  flex-grow: 1;
}

ul.products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin: 0 0 3rem;
  padding: 0;
  list-style: none;
}

ul.products.list-view {
  grid-template-columns: 1fr;
}

/* Product Card */
li.product-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  backdrop-filter: blur(20px);
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
  list-style: none;
  margin-bottom: 0;
  width: 100%;
}
li.product-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 60px rgba(102, 126, 234, 0.2);
  border-color: rgba(102, 126, 234, 0.5);
}
li.product-card .product-image-wrapper {
  position: relative;
  width: 100%;
  height: 250px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  overflow: hidden;
}
li.product-card .product-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
li.product-card .onsale {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: linear-gradient(135deg, #ff6b6b, #ff5252);
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  z-index: 2;
  margin: 0;
  line-height: 1;
}
li.product-card .product-actions {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s ease;
  z-index: 2;
}
li.product-card:hover .product-actions {
  opacity: 1;
  transform: translateX(0);
}
li.product-card .action-btn {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  color: white;
}
li.product-card .action-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}
li.product-card .product-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}
li.product-card .product-category {
  font-size: 0.8rem;
  color: #667eea;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}
li.product-card .product-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.3;
  color: white;
}
li.product-card .woocommerce-loop-product__title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #ffffff;
  line-height: 1.3;
}
li.product-card .star-rating {
  font-size: 0.9rem;
  color: #FFD700;
  margin-bottom: 0.75rem;
}
li.product-card .product-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
}
li.product-card .price {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
}
li.product-card .price del {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
}
li.product-card .add_to_cart_button {
  padding: 0.6rem 1.2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  border-radius: 50px;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 0.9rem;
}
li.product-card .add_to_cart_button:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

/* List View Styles */
ul.products.list-view li.product-card {
  flex-direction: row;
}
ul.products.list-view li.product-card .product-image-wrapper {
  width: 250px;
  height: auto;
  flex-shrink: 0;
}
ul.products.list-view li.product-card .product-info {
  flex-grow: 1;
  padding: 2rem;
}
ul.products.list-view li.product-card .product-title {
  font-size: 1.3rem;
}
ul.products.list-view li.product-card .product-description {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0.5rem 0 1rem;
}

.product-description {
  display: none;
}

/* Pagination */
.woocommerce-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 3rem;
}
.woocommerce-pagination ul.page-numbers {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  border: none;
}
.woocommerce-pagination ul.page-numbers li {
  margin: 0;
}
.woocommerce-pagination ul.page-numbers li .page-numbers {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}
.woocommerce-pagination ul.page-numbers li .page-numbers:hover, .woocommerce-pagination ul.page-numbers li .page-numbers.current {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-color: transparent;
  color: #ffffff;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Ensure theme styles override WooCommerce blocks */
.sidebar .wp-block-group,
.sidebar .wp-block-woocommerce-filter-wrapper,
.sidebar .wc-block-product-categories,
.sidebar .wp-block-widget,
.sidebar .widget,
.sidebar .sidebar-widget,
.wc-block-sidebar .wp-block-group,
.wc-block-sidebar .wp-block-woocommerce-filter-wrapper,
.wc-block-sidebar .wc-block-product-categories,
.wc-block-sidebar .wp-block-widget,
.wc-block-sidebar .widget,
.wc-block-sidebar .sidebar-widget,
.wp-block-widget-area .wp-block-group,
.wp-block-widget-area .wp-block-woocommerce-filter-wrapper,
.wp-block-widget-area .wc-block-product-categories,
.wp-block-widget-area .wp-block-widget,
.wp-block-widget-area .widget,
.wp-block-widget-area .sidebar-widget {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 15px !important;
  padding: 1.5rem !important;
  backdrop-filter: blur(20px);
  margin-bottom: 1.5rem !important;
  color: #fff;
}
.sidebar .widget-title,
.sidebar .wc-block-product-categories__title,
.sidebar h3,
.wc-block-sidebar .widget-title,
.wc-block-sidebar .wc-block-product-categories__title,
.wc-block-sidebar h3,
.wp-block-widget-area .widget-title,
.wp-block-widget-area .wc-block-product-categories__title,
.wp-block-widget-area h3 {
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  margin-bottom: 1rem !important;
  color: #fff !important;
}
.sidebar,
.wc-block-sidebar,
.wp-block-widget-area {
  /* Fix for product category lists */
}
.sidebar .wc-block-product-categories-list,
.sidebar .wp-block-list,
.wc-block-sidebar .wc-block-product-categories-list,
.wc-block-sidebar .wp-block-list,
.wp-block-widget-area .wc-block-product-categories-list,
.wp-block-widget-area .wp-block-list {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.sidebar .wc-block-product-categories-list li,
.sidebar .wp-block-list li,
.wc-block-sidebar .wc-block-product-categories-list li,
.wc-block-sidebar .wp-block-list li,
.wp-block-widget-area .wc-block-product-categories-list li,
.wp-block-widget-area .wp-block-list li {
  margin-bottom: 0.6rem;
}
.sidebar .wc-block-product-categories-list li a,
.sidebar .wp-block-list li a,
.wc-block-sidebar .wc-block-product-categories-list li a,
.wc-block-sidebar .wp-block-list li a,
.wp-block-widget-area .wc-block-product-categories-list li a,
.wp-block-widget-area .wp-block-list li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}
.sidebar .wc-block-product-categories-list li a:hover,
.sidebar .wp-block-list li a:hover,
.wc-block-sidebar .wc-block-product-categories-list li a:hover,
.wc-block-sidebar .wp-block-list li a:hover,
.wp-block-widget-area .wc-block-product-categories-list li a:hover,
.wp-block-widget-area .wp-block-list li a:hover {
  color: #667eea;
}
.sidebar,
.wc-block-sidebar,
.wp-block-widget-area {
  /* Filter widget adjustments */
}
.sidebar .wc-block-product-filter,
.wc-block-sidebar .wc-block-product-filter,
.wp-block-widget-area .wc-block-product-filter {
  background: rgba(255, 255, 255, 0.05) !important;
  border-radius: 10px;
  padding: 1rem;
}
.sidebar,
.wc-block-sidebar,
.wp-block-widget-area {
  /* WooCommerce block dropdown fix */
}
.sidebar select,
.wc-block-sidebar select,
.wp-block-widget-area select {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  border-radius: 8px;
}

body.single-product {
  background: #fff;
  /* Breadcrumb */
}
body.single-product .woocommerce-breadcrumb {
  padding: 2rem 0 1rem;
  margin-top: 80px;
  font-size: 0.9rem;
}
body.single-product .woocommerce-breadcrumb a {
  color: #667eea;
  text-decoration: none;
  transition: color 0.3s ease;
}
body.single-product .woocommerce-breadcrumb a:hover {
  color: #764ba2;
}
body.single-product .woocommerce-breadcrumb .delimiter {
  margin: 0 0.5rem;
  color: #ccc;
}
body.single-product {
  /* Product Section */
}
body.single-product .product-section {
  padding: 2rem 0 4rem;
}
body.single-product .product-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
body.single-product {
  /* Product Gallery */
}
body.single-product .product-gallery {
  position: sticky;
  top: 120px;
}
body.single-product .woocommerce-product-gallery {
  display: flex;
  flex-direction: column;
}
body.single-product .woocommerce-product-gallery__wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  border-radius: 20px;
  overflow: hidden;
}
body.single-product .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.2s ease;
}
body.single-product .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image:first-child {
  flex: 1 1 100%;
  height: 400px;
}
body.single-product .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image:first-child img {
  border-radius: 12px;
}
body.single-product .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image:not(:first-child) {
  flex: 0 0 22%;
  height: 100px;
}
body.single-product .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image:not(:first-child) img:hover {
  transform: scale(1.05);
}
body.single-product .woocommerce-product-gallery__image {
  border-radius: 12px;
  display: inline-block;
}
body.single-product .woocommerce-product-gallery__image img {
  border-radius: 12px;
}
body.single-product .woocommerce-product-gallery__trigger {
  border-radius: 50%;
  background: rgba(102, 126, 234, 0.8) !important;
}
body.single-product .flex-control-nav.flex-control-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
body.single-product .flex-control-nav.flex-control-thumbs li {
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}
body.single-product .flex-control-nav.flex-control-thumbs li.flex-active, body.single-product .flex-control-nav.flex-control-thumbs li:hover {
  border-color: #667eea;
  box-shadow: 0 0 20px rgba(102, 126, 234, 0.3);
}
body.single-product .flex-control-nav.flex-control-thumbs img {
  width: 100%;
  height: 100px;
  object-fit: cover;
}
body.single-product {
  /* Product Info */
}
body.single-product .product-info h1.product_title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
body.single-product .woocommerce-product-rating {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}
body.single-product .woocommerce-product-rating .star-rating {
  color: #ffd700;
  float: none;
  margin: 0;
}
body.single-product .woocommerce-review-link {
  color: #666;
}
body.single-product .price {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
body.single-product .price ins {
  text-decoration: none;
}
body.single-product .price .amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: #667eea;
}
body.single-product .price del .amount {
  font-size: 1.5rem;
  color: #999;
  text-decoration: line-through;
}
body.single-product .woocommerce-variation-price .price {
  margin-bottom: 0;
}
body.single-product .woocommerce-product-details__short-description {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}
body.single-product {
  /* Variations */
}
body.single-product .variations {
  margin-bottom: 1rem;
}
body.single-product .variations th.label {
  align-items: center;
}
body.single-product .variations th.label label {
  padding-right: 10px;
}
body.single-product .variations th.label label[for=pa_size] {
  margin-left: -6px;
  margin-top: -20px;
}
body.single-product .variations label {
  display: block;
  font-weight: 600;
  font-size: 1.1rem;
}
body.single-product .variations select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 10px 40px 10px 12px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  width: 100%;
  background: #fff url("data:image/svg+xml;utf8,<svg fill='%23764ba2' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>") no-repeat right 8px center;
  background-size: 25px;
}
body.single-product .variations select:hover, body.single-product .variations select:focus {
  border-color: #764ba2;
  outline: none;
}
body.single-product .single_variation_wrap .woocommerce-variation-add-to-cart {
  display: inline-flex;
}
body.single-product .single_variation_wrap .woocommerce-variation-add-to-cart .quantity .qty {
  border-radius: 8px;
  padding: 16px 12px;
  border: 2px solid #e0e0e0;
  transition: all 0.3s ease;
  margin-right: 8px;
  width: 60px;
}
body.single-product .single_variation_wrap .woocommerce-variation-add-to-cart .quantity .qty:hover, body.single-product .single_variation_wrap .woocommerce-variation-add-to-cart .quantity .qty:focus {
  border-color: #764ba2;
  outline: none;
}
body.single-product .product_meta {
  margin-top: 10px;
  display: none;
}
body.single-product {
  /* Action Buttons */
}
body.single-product .single_add_to_cart_button {
  background: linear-gradient(135deg, #667eea, #764ba2) !important;
  color: white !important;
  border: none;
  border-radius: 12px !important;
  padding: 1rem 2rem !important;
  font-size: 1.1rem !important;
  font-weight: 600 !important;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1;
}
body.single-product .single_add_to_cart_button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
}
body.single-product {
  /* Product Features */
}
body.single-product .product-features {
  margin: 2rem 0;
}
body.single-product .product-features .option-label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
}
body.single-product .product-features .features-list {
  list-style: none;
  padding-left: 0;
}
body.single-product .product-features .features-list li {
  display: flex;
  align-items: center;
  margin-bottom: 0.8rem;
  color: #555;
}
body.single-product .product-features .features-list li::before {
  content: "✓";
  background: linear-gradient(135deg, #43e97b, #38f9d7);
  color: white;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  font-size: 0.8rem;
  font-weight: bold;
}
body.single-product {
  /* Data Tabs (Specs, Reviews) */
}
body.single-product .woocommerce-tabs {
  margin: 4rem 0;
}
body.single-product .woocommerce-tabs ul.tabs {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  display: flex;
  gap: 1rem;
  border-bottom: 2px solid #eee;
}
body.single-product .woocommerce-tabs ul.tabs li {
  background: none !important;
  border: none !important;
  padding: 0 0 1rem 0 !important;
  margin: 0 !important;
  position: relative;
}
body.single-product .woocommerce-tabs ul.tabs li::before, body.single-product .woocommerce-tabs ul.tabs li::after {
  display: none !important;
}
body.single-product .woocommerce-tabs ul.tabs li a {
  color: #999;
  font-weight: 600;
}
body.single-product .woocommerce-tabs ul.tabs li.active {
  border-bottom: 2px solid #667eea !important;
}
body.single-product .woocommerce-tabs ul.tabs li.active a {
  color: #667eea;
}
body.single-product .woocommerce-tabs .panel {
  background: #f8f9ff;
  border-radius: 20px;
  padding: 2rem;
}
body.single-product .woocommerce-tabs .panel h1, body.single-product .woocommerce-tabs .panel h2, body.single-product .woocommerce-tabs .panel h3, body.single-product .woocommerce-tabs .panel h4, body.single-product .woocommerce-tabs .panel h5, body.single-product .woocommerce-tabs .panel h6 {
  margin-bottom: 15px;
}
body.single-product .woocommerce-tabs .panel p {
  margin-bottom: 15px;
}
body.single-product .woocommerce-tabs .panel table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 15px;
}
body.single-product .woocommerce-tabs .panel ul {
  list-style: disc;
  margin-left: 10px;
  margin-bottom: 15px;
  padding-left: 20px;
}
body.single-product .woocommerce-tabs .panel ul li {
  margin-bottom: 5px;
}
body.single-product .woocommerce-tabs .panel ul li ul {
  list-style: circle;
  margin-top: 10px;
}
body.single-product .woocommerce-tabs .panel .shop_attributes p {
  margin-bottom: 0;
}
body.single-product table.woocommerce-product-attributes {
  background: none;
}
body.single-product h2.woocommerce-Reviews-title,
body.single-product #reply-title {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
body.single-product {
  /* Related Products */
}
body.single-product .related.products {
  padding: 4rem 0;
  background: #f8f9ff;
}
body.single-product .related.products > h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
}
body.single-product .related.products .products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
body.single-product .related.products .products .product {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
body.single-product .related.products .products .product:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* cart-page.css */
.page-header {
  text-align: center;
  padding: 3rem 0 2rem;
}

.page-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #667eea 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
}

/* Cart Layout */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 3rem;
  margin-bottom: 4rem;
}

/* Cart Items */
.cart-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cart-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 1.5rem;
  backdrop-filter: blur(20px);
  transition: all 0.3s ease;
  animation: slideIn 0.5s ease forwards;
  opacity: 0;
  transform: translateX(-20px);
}

.cart-item:hover {
  border-color: rgba(102, 126, 234, 0.3);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.1);
}

.item-content {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.item-image {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 12px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.item-details {
  flex-grow: 1;
}

.item-details a {
  color: #ffffff;
  text-decoration: none;
}

.item-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: #ffffff;
}

.item-category {
  font-size: 0.8rem;
  color: #667eea;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.item-category a {
  color: inherit;
  text-decoration: none;
}

.item-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
}

.item-controls {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-end;
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 0.3rem;
}

.quantity-controls .quantity {
  display: flex;
  align-items: center;
}

.quantity-controls .quantity .qty {
  background: transparent;
  border: none;
  color: white;
  min-width: 40px;
  text-align: center;
  font-weight: 600;
  padding: 0 0.5rem;
  -moz-appearance: textfield;
}
.quantity-controls .quantity .qty::-webkit-inner-spin-button, .quantity-controls .quantity .qty::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.quantity-controls .quantity .qty:focus-visible {
  outline: none;
}

.qty-btn {
  width: 32px;
  height: 32px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.qty-btn:hover {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  transform: scale(1.1);
}

.remove-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  text-decoration: underline;
}

.remove-btn:hover {
  color: #ff6b6b;
}

/* Cart Summary */
.cart-summary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(20px);
  height: fit-content;
  position: sticky;
  top: 120px;
}

.summary-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.summary-row, .cart-summary .woocommerce-shipping-totals, .cart-summary .tax-rate, .cart-summary .tax-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-row.order-total {
  border-bottom: none;
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 2px solid rgba(102, 126, 234, 0.3);
}

.summary-label, .cart-summary th {
  color: rgba(255, 255, 255, 0.8);
}

.summary-value, .cart-summary td {
  color: #ffffff;
  font-weight: 600;
}

.cart-summary td .amount, .summary-value .amount {
  color: #ffffff;
  font-weight: 600;
}

.checkout-btn {
  width: 100%;
  padding: 1rem;
  margin-top: 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  border-radius: 50px;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: block;
  text-align: center;
  text-decoration: none;
}

.checkout-btn::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;
}

.checkout-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.checkout-btn:hover::before {
  left: 100%;
}

.continue-shopping {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #667eea;
  text-decoration: none;
  margin-top: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.continue-shopping:hover {
  color: #ffffff;
  transform: translateX(-5px);
}

/* Empty Cart */
.empty-cart {
  text-align: center;
  padding: 4rem 2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(20px);
}

.empty-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.empty-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.empty-text {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
}

.shop-now-btn {
  display: inline-block;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.shop-now-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

/* Animations */
@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeOut {
  to {
    opacity: 0;
    transform: scale(0.95);
  }
}
/* Responsive Design */
@media (max-width: 992px) {
  .cart-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .cart-summary {
    position: static;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
  .item-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .item-controls {
    align-items: center;
    width: 100%;
  }
  .quantity-controls {
    order: -1;
    margin-bottom: 1rem;
  }
}
/* WooCommerce specific overrides */
.cart-summary th, .cart-summary td {
  display: contents;
}

.cart-summary .woocommerce-shipping-destination,
.cart-summary .shipping-calculator-form {
  text-align: left;
  margin-top: 1rem;
  width: 100%;
}

.cart-summary label[for=shipping_method_0_free_shipping1] {
  color: rgba(255, 255, 255, 0.8);
}

.woocommerce .col2-set {
  display: block !important;
}

.woocommerce .col2-set .col-1,
.woocommerce .col2-set .col-2 {
  width: 100% !important;
  float: none !important;
  margin: 0 !important;
}

.woocommerce .col2-set .col-2 {
  margin-top: 2em;
}

.page-header {
  text-align: center;
  padding-bottom: 2rem;
}

.page-title {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
  background: linear-gradient(135deg, #ffffff 0%, #a5b4fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.security-notice {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #4ade80;
  font-weight: 600;
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.3);
  border-radius: 50px;
  padding: 0.5rem 1rem;
}

/* Checkout Layout */
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 3rem;
  align-items: flex-start;
}

/* Forms */
.woocommerce-checkout form.checkout #customer_details,
.woocommerce-checkout form.checkout #order_review {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2.5rem;
  backdrop-filter: blur(20px);
  margin-bottom: 2rem;
}
.woocommerce-checkout form.checkout #customer_details .form-row,
.woocommerce-checkout form.checkout #order_review .form-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}
.woocommerce-checkout form.checkout #customer_details .form-row label,
.woocommerce-checkout form.checkout #order_review .form-row label {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
}
.woocommerce-checkout form.checkout #customer_details .form-row label .required,
.woocommerce-checkout form.checkout #order_review .form-row label .required {
  color: #ff6b6b;
}
.woocommerce-checkout form.checkout #customer_details #billing_country_field .select2-container .select2-selection--single,
.woocommerce-checkout form.checkout #order_review #billing_country_field .select2-container .select2-selection--single {
  height: 45px;
  padding: 7px 5px;
}
.woocommerce-checkout form.checkout #customer_details #billing_country_field .select2-container .select2-selection--single .select2-selection__arrow,
.woocommerce-checkout form.checkout #order_review #billing_country_field .select2-container .select2-selection--single .select2-selection__arrow {
  top: 9px;
  right: 11px;
}
.woocommerce-checkout form.checkout #customer_details .form-row .input-text,
.woocommerce-checkout form.checkout #customer_details .form-row select,
.woocommerce-checkout form.checkout #customer_details .form-row .select2-selection,
.woocommerce-checkout form.checkout #order_review .form-row .input-text,
.woocommerce-checkout form.checkout #order_review .form-row select,
.woocommerce-checkout form.checkout #order_review .form-row .select2-selection {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s ease;
  width: 100%;
}
.woocommerce-checkout form.checkout #customer_details .form-row .input-text:focus,
.woocommerce-checkout form.checkout #customer_details .form-row select:focus,
.woocommerce-checkout form.checkout #order_review .form-row .input-text:focus,
.woocommerce-checkout form.checkout #order_review .form-row select:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.3);
  outline: none;
}
.woocommerce-checkout form.checkout #customer_details,
.woocommerce-checkout form.checkout #order_review {
  /* Checkboxes */
}
.woocommerce-checkout form.checkout #customer_details .woocommerce-form__label-for-checkbox,
.woocommerce-checkout form.checkout #order_review .woocommerce-form__label-for-checkbox {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  display: flex !important;
  align-items: center;
}
.woocommerce-checkout form.checkout #customer_details .woocommerce-form__label-for-checkbox input,
.woocommerce-checkout form.checkout #order_review .woocommerce-form__label-for-checkbox input {
  margin-right: 0.75rem;
  width: 1.2em;
  height: 1.2em;
}

.form-section {
  margin-bottom: 2rem;
}

.form-section:last-child {
  margin-bottom: 0;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.woocommerce-billing-fields, .woocommerce-shipping-fields {
  display: grid;
  gap: 1.5rem;
}

#shipping_method_options {
  color: #fff;
}

.woocommerce-billing-fields .form-row-wide,
.woocommerce-shipping-fields .form-row-wide {
  grid-column: 1/-1;
}

/* Order Summary */
.order-summary {
  position: sticky;
  top: 120px;
}

.woocommerce-checkout-review-order-table {
  width: 100%;
  border-collapse: collapse;
}

.woocommerce-checkout-review-order-table thead {
  display: none;
}

.woocommerce-checkout-review-order-table .cart_item,
.woocommerce-checkout-review-order-table .cart-subtotal,
.woocommerce-checkout-review-order-table .fee,
.woocommerce-checkout-review-order-table .tax-rate,
.woocommerce-checkout-review-order-table .shipping,
.woocommerce-checkout-review-order-table .order-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.woocommerce-checkout-review-order-table .cart_item {
  padding: 1rem 0;
}

.product-name {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.product-thumbnail {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  overflow: hidden;
}

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

.product-quantity {
  margin-left: 0.5rem;
}

.woocommerce-checkout-review-order-table .order-total {
  border-bottom: none;
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 2px solid rgba(102, 126, 234, 0.3);
}

/* Payment Methods */
#payment {
  background: transparent;
  border-radius: 0;
}

#payment .wc_payment_methods {
  padding: 0;
  border: 0;
}

#payment .wc_payment_method {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  margin-bottom: 1rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

#payment .wc_payment_method > label {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
}

#payment .wc_payment_method:hover {
  border-color: rgba(102, 126, 234, 0.3);
}

#payment .payment_box {
  background: rgba(0, 0, 0, 0.2);
  color: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  margin-top: 1rem;
  padding: 1rem;
}

#payment .payment_box::before {
  display: none;
}

/* Place Order Button */
#place_order {
  width: 100%;
  padding: 1rem;
  margin-top: 1rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  border-radius: 50px;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

#place_order:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

/* Responsive */
@media (max-width: 992px) {
  .checkout-layout {
    grid-template-columns: 1fr;
  }
  .order-summary {
    position: static;
    margin-top: 2rem;
  }
}
@media (max-width: 768px) {
  .woocommerce-billing-fields, .woocommerce-shipping-fields {
    grid-template-columns: 1fr;
  }
}
/* Thank You Page Styles */
.woocommerce-order-received .success-banner {
  text-align: center;
  padding: 4rem 0 2rem;
  animation: fadeInDown 0.6s ease;
}
.woocommerce-order-received .success-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 2rem;
  background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  box-shadow: 0 20px 60px rgba(76, 175, 80, 0.4);
  animation: scaleIn 0.6s ease;
  position: relative;
  color: #fff;
}
.woocommerce-order-received .success-icon::before {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  border: 2px solid rgba(76, 175, 80, 0.3);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
.woocommerce-order-received .success-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.woocommerce-order-received .success-message {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
}
.woocommerce-order-received .order-number {
  font-size: 1rem;
  color: #667eea;
  font-weight: 600;
}
.woocommerce-order-received {
  /* Content Grid */
}
.woocommerce-order-received .content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 3rem 0;
}
.woocommerce-order-received {
  /* Order Details Card */
}
.woocommerce-order-received .details-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(20px);
  transition: all 0.3s ease;
  animation: slideInLeft 0.6s ease;
  color: #fff;
}
.woocommerce-order-received .details-card address {
  font-style: normal;
  line-height: 1.6;
}
.woocommerce-order-received .card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.woocommerce-order-received {
  /* Order Items */
}
.woocommerce-order-received .order-items {
  grid-column: 1/-1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(20px);
  animation: slideInUp 0.6s ease;
}
.woocommerce-order-received {
  /* Action Buttons */
}
.woocommerce-order-received .action-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin: 3rem 0;
  flex-wrap: wrap;
}
.woocommerce-order-received .btn {
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.woocommerce-order-received .btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
}
.woocommerce-order-received .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}
.woocommerce-order-received .btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.woocommerce-order-received .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(102, 126, 234, 0.5);
}
.woocommerce-order-received {
  /* Tracking Section */
}
.woocommerce-order-received .tracking-section {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(20px);
  margin-bottom: 3rem;
  animation: slideInRight 0.6s ease;
}
.woocommerce-order-received .tracking-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 2rem;
}
.woocommerce-order-received .tracking-steps::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 40px;
  right: 40px;
  height: 2px;
  background: linear-gradient(90deg, #667eea 0%, rgba(102, 126, 234, 0.3) 100%);
}
.woocommerce-order-received .tracking-step {
  flex: 1;
  text-align: center;
  position: relative;
}
.woocommerce-order-received .step-icon {
  width: 40px;
  height: 40px;
  background: rgba(102, 126, 234, 0.2);
  border: 2px solid rgba(102, 126, 234, 0.5);
  border-radius: 50%;
  margin: 0 auto 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
  color: #fff;
}
.woocommerce-order-received .tracking-step.active .step-icon {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-color: #667eea;
  box-shadow: 0 0 20px rgba(102, 126, 234, 0.5);
}
.woocommerce-order-received .tracking-step.completed .step-icon {
  background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
  border-color: #4CAF50;
}
.woocommerce-order-received .step-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.5rem;
}
.woocommerce-order-received .tracking-step.active .step-label,
.woocommerce-order-received .tracking-step.completed .step-label {
  color: #ffffff;
  font-weight: 600;
}
.woocommerce-order-received {
  /* Email Notification */
}
.woocommerce-order-received .email-notice {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  border: 1px solid rgba(102, 126, 234, 0.3);
  border-radius: 15px;
  padding: 1.5rem;
  margin: 2rem 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: pulse 2s ease-in-out infinite;
}
.woocommerce-order-received .email-icon {
  font-size: 2rem;
  flex-shrink: 0;
}
.woocommerce-order-received .email-text {
  color: rgba(255, 255, 255, 0.9);
}
.woocommerce-order-received .email-text strong {
  color: #667eea;
}
.woocommerce-order-received {
  /* WooCommerce Defaults Overrides */
}
.woocommerce-order-received .woocommerce-order-details, .woocommerce-order-received .woocommerce-customer-details {
  display: none;
}
.woocommerce-order-received .shop_table.order_details {
  width: 100%;
  border-collapse: collapse;
}
.woocommerce-order-received .shop_table.order_details thead {
  display: none;
}
.woocommerce-order-received .shop_table.order_details tbody, .woocommerce-order-received .shop_table.order_details tr, .woocommerce-order-received .shop_table.order_details td, .woocommerce-order-received .shop_table.order_details tfoot {
  display: contents;
}
.woocommerce-order-received .shop_table.order_details .woocommerce-table__product-name {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.woocommerce-order-received .order_item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  transition: all 0.3s ease;
  margin-bottom: 1rem;
}
.woocommerce-order-received .order_item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(5px);
}

/* Add Responsive styles */

/*# sourceMappingURL=main.css.map */
