@import url("https://fonts.googleapis.com/css2?family=Big+Shoulders+Stencil:opsz,wght@10..72,100..900&family=Dancing+Script:wght@400..700&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Oswald:wght@200..700&family=Outfit:wght@100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* Navbar Styles */
.navbar {
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
  height: 70px;
  width: auto;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
}

.navbar-nav .nav-link {
  font-size: 1.05rem;
  font-weight: 500;
  color: #000080;
  margin: 0 0.5rem;
  transition: color 0.3s;
}

.navbar-nav .nav-link:hover {
  color: rgb(255, 188, 64);
}

.navbar-nav .nav-link.active {
  color: rgb(255, 184, 54);
}

.hero {
  background: url(../images/finsihed.webp) center center/cover no-repeat;
  height: 100vh;
  /* color: navy; */
  padding: 12rem 2rem 8rem;
  text-align: center;
}

.hero h1 {
  font-family: "Poppins", "Montserrat", sans-serif;
  font-size: 4rem; /* 64px */
  font-weight: 700; /* Bold */
  letter-spacing: 2px;
  color: #000080;
  line-height: 1.2;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  animation: fadeInUp 1s;
}

.hero p {
  font-family: "Open Sans", "Roboto", sans-serif;
  font-size: 1.5rem; /* 24px */
  font-weight: 500; /* Medium */
  line-height: 1.6;
  letter-spacing: 0.5px;
  color: white;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.8);
  margin: 0 auto;
  animation: fadeInUp 1s 0.2s backwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Product Container */
.product-container {
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 2rem;
}

.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  background: white;
  padding: 3rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Left Side - Product Images */
.product-images {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.main-image {
  width: 100%;
  height: 500px;
  background: #f0f0f0;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1rem;
  border: 1px solid #e0e0e0;
}

.main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumbnail-images {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.thumbnail {
  width: 100%;
  height: 100px;
  background: #f0f0f0;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border 0.3s;
}

.thumbnail:hover,
.thumbnail.active {
  border-color: #667eea;
}

.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Right Side - Product Info */
.product-info {
  padding: 0.5rem 0;
}

.product-title {
  font-size: 2.5rem;
  color: #000080;
  margin-bottom: 1rem;
  font-weight: 700;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.stars {
  color: #ffa500;
  font-size: 1.2rem;
}

.rating-text {
  color: #666;
}

.product-price {
  font-size: 2.5rem;
  color: #667eea;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.original-price {
  font-size: 1.5rem;
  color: #999;
  text-decoration: line-through;
  margin-left: 1rem;
}

.discount-badge {
  display: inline-block;
  background: #ff4444;
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 5px;
  font-size: 0.9rem;
  margin-left: 1rem;
}

.stock-status {
  color: #28a745;
  font-weight: 600;
  margin: 1rem 0;
  font-size: 1.1rem;
}

/* Tab Buttons */
.tab-buttons {
  display: flex;
  gap: 0.5rem;
  margin: 2rem 0 1.5rem;
  border-bottom: 2px solid #e0e0e0;
}

.tab-btn {
  padding: 1rem 2rem;
  background: transparent;
  border: none;
  font-size: 1.1rem;
  font-weight: 600;
  color: #666;
  cursor: pointer;
  transition: all 0.3s;
  border-bottom: 3px solid transparent;
  position: relative;
  bottom: -2px;
}

.tab-btn:hover {
  color: #667eea;
}

.tab-btn.active {
  color: #667eea;
  border-bottom-color: #667eea;
}

/* Tab Content */
.tab-content {
  display: none;
  animation: fadeIn 0.3s;
}

.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tab-content h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 1rem;
}

.tab-content p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.tab-content ul {
  margin-left: 1.5rem;
  color: #666;
  line-height: 2;
}

.tab-content ul li {
  margin-bottom: 0.5rem;
}

/* Specifications Table */
.specs-table {
  width: 100%;
  margin-top: 1rem;
}

.specs-table tr {
  border-bottom: 1px solid #e0e0e0;
}

.specs-table td {
  padding: 1rem;
  color: #666;
}

.specs-table td:first-child {
  font-weight: 600;
  color: #333;
  width: 40%;
}

/* Action Buttons */
.product-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.quantity-selector {
  display: flex;
  align-items: center;
  border: 2px solid #e0e0e0;
  border-radius: 5px;
  overflow: hidden;
}

.quantity-btn {
  padding: 1rem 1.5rem;
  background: #f8f9fa;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  transition: background 0.3s;
}

.quantity-btn:hover {
  background: #e0e0e0;
}

.quantity-display {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
}

/* .btn {
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 5px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-primary {
  background: #667eea;
  color: white;
  flex: 1;
}

.btn-primary:hover {
  background: #5568d3;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.btn-secondary {
  background: white;
  color: #667eea;
  border: 2px solid #667eea;
}

.btn-secondary:hover {
  background: #667eea;
  color: white;
} */

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
}

.feature-icon {
  width: 50px;
  font-size: 2rem;
}

.feature-text h4 {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 0.3rem;
}

.feature-text p {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}

/* Footer Section */
footer {
  background: navy;
  color: #fff;
  padding: 4rem 2rem 2rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-column h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: rgb(233, 163, 33);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-logo img {
  width: 40px;
  height: 40px;
}

.footer-logo span {
  font-size: 1.5rem;
  font-weight: bold;
}

.footer-column p {
  line-height: 1.8;
  color: #ccc;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #00d4ff;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.contact-item span {
  font-size: 1.2rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: #2a2a3e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.3s;
}

.social-links a:hover {
  background: #00d4ff;
  transform: translateY(-3px);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid #2a2a3e;
  text-align: center;
  color: #ccc;
}

/* START WHATSAPP */
/* WhatsApp Widget Styles */
.whatsapp-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.whatsapp-button {
  background: #25d366;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
  position: relative;
}

.whatsapp-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-button svg {
  width: 24px;
  height: 24px;
  fill: white;
  flex-shrink: 0;
}

.button-text {
  color: white;
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
}

.notification-dot {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 14px;
  height: 14px;
  background: #ff3333;
  border-radius: 50%;
  border: 2px solid white;
  animation: dotPulse 2s infinite;
}

@keyframes dotPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 51, 51, 0.7);
  }
  70% {
    transform: scale(1.1);
    box-shadow: 0 0 0 8px rgba(255, 51, 51, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 51, 51, 0);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  }
  50% {
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3),
      0 0 0 10px rgba(37, 211, 102, 0.1);
  }
  100% {
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  }
}

.whatsapp-popup {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 320px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  transform: scale(0);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform-origin: bottom right;
}

.whatsapp-popup.active {
  transform: scale(1);
  opacity: 1;
}

.popup-header {
  background: #25d366;
  color: white;
  padding: 16px 20px;
  border-radius: 16px 16px 0 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.popup-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  object-fit: cover;
}

.popup-info h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 2px;
}

.popup-info p {
  font-size: 13px;
  opacity: 0.9;
}

.popup-body {
  padding: 20px;
}

.popup-message {
  background: #f0f0f0;
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 1.4;
  color: #333;
}

.popup-actions {
  display: flex;
  gap: 10px;
}

.popup-btn {
  flex: 1;
  padding: 12px 16px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 14px;
}

.popup-btn.primary {
  background: #25d366;
  color: white;
}

.popup-btn.primary:hover {
  background: #22c55e;
  transform: translateY(-1px);
}

.popup-btn.secondary {
  background: #f3f4f6;
  color: #6b7280;
}

.popup-btn.secondary:hover {
  background: #e5e7eb;
}

.close-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: background 0.2s ease;
}

.close-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Mobile Responsive */
/* Mobile Responsive */
@media (max-width: 968px) {
  .product-container {
    margin: 1.5rem auto;
    padding: 0 1rem;
  }

  .product-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
    border-radius: 8px;
  }

  .product-images {
    position: static;
  }

  .main-image {
    height: 300px;
    margin-bottom: 0.8rem;
  }

  .thumbnail-images {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.8rem;
  }

  .thumbnail {
    height: 80px;
  }

  .product-title {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
  }

  .product-price {
    font-size: 1.8rem;
  }

  .original-price {
    font-size: 1.1rem;
    margin-left: 0.5rem;
  }

  .product-rating {
    margin-bottom: 1rem;
  }

  .tab-buttons {
    overflow-x: auto;
    margin: 1.5rem 0 1rem;
  }

  .tab-btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.95rem;
    white-space: nowrap;
  }

  .product-actions {
    flex-direction: column;
    margin-top: 1.5rem;
    gap: 0.8rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 1.5rem 0;
  }

  .feature-item {
    padding: 0.8rem;
  }
}

@media (max-width: 768px) {
  * {
    margin: 0;
    padding: 0;
  }

  .navbar {
    padding: 0.1rem 0;
  }

  .navbar-brand img {
    height: 50px;
  }

  .navbar-brand {
    font-size: 1.2rem;
  }

  .navbar-nav .nav-link {
    font-size: 0.9rem;
    margin: 0 0.3rem;
  }

  .hero {
    height: auto;
    min-height: 60vh;
    margin-bottom: 80px;
    /* padding: 6rem 1rem 4rem; */
  }

  .hero h1 {
    margin-top: 80px;
    font-size: 2.5rem;
    margin-bottom: 0.2rem;
  }

  .hero p {
    font-size: 1.1rem;
    line-height: 1.6;
  }

  .product-container {
    margin: 1rem auto;
    padding: 0 0.5rem;
  }

  .product-layout {
    padding: 1rem;
    gap: 1rem;
    border-radius: 6px;
  }

  .product-images {
    position: static;
  }

  .main-image {
    height: 550px;
    margin-bottom: 0.6rem;
    border-radius: 6px;
  }

  .thumbnail-images {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.6rem;
  }

  .thumbnail {
    height: 70px;
    border-radius: 6px;
  }

  .product-info {
    padding: 0;
  }

  .product-title {
    font-size: 1.5rem;
    margin-bottom: 0.6rem;
  }

  .product-rating {
    gap: 0.8rem;
    margin-bottom: 0.8rem;
  }

  .stars {
    font-size: 1rem;
  }

  .rating-text {
    font-size: 0.85rem;
  }

  .product-price {
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
  }

  .original-price {
    font-size: 1rem;
    margin-left: 0.3rem;
  }

  .discount-badge {
    padding: 0.2rem 0.6rem;
    font-size: 0.8rem;
    margin-left: 0.5rem;
  }

  .stock-status {
    margin: 0.8rem 0;
    font-size: 1rem;
  }

  .tab-buttons {
    gap: 0.3rem;
    margin: 1rem 0 0.8rem;
    border-bottom: 1px solid #e0e0e0;
  }

  .tab-btn {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    border-bottom: 2px solid transparent;
    bottom: -1px;
  }

  .tab-btn.active {
    border-bottom-color: #667eea;
  }

  .tab-content {
    padding: 0;
  }

  .tab-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
  }

  .tab-content p {
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
  }

  .specs-table {
    margin-top: 0.8rem;
  }

  .specs-table td {
    padding: 0.8rem;
    font-size: 0.9rem;
  }

  .quantity-selector {
    border-radius: 4px;
  }

  .quantity-btn {
    padding: 0.8rem 1rem;
    font-size: 1rem;
  }

  .quantity-display {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }

  .product-actions {
    flex-direction: column;
    margin-top: 1rem;
    gap: 0.8rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    margin: 1rem 0;
  }

  .feature-item {
    padding: 0.8rem;
    gap: 0.8rem;
  }

  .feature-icon {
    width: 40px;
    font-size: 1.5rem;
  }

  .feature-text h4 {
    font-size: 0.95rem;
  }

  .feature-text p {
    font-size: 0.85rem;
  }

  footer {
    padding: 2rem 1rem 1.5rem;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1rem;
  }

  .footer-column h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .footer-column p {
    font-size: 0.9rem;
  }

  .footer-links a {
    font-size: 0.9rem;
  }

  .footer-bottom {
    padding-top: 1rem;
    font-size: 0.85rem;
  }

  /* WhatsApp Widget Mobile */
  .whatsapp-widget {
    bottom: 15px;
    right: 15px;
  }

  .whatsapp-button {
    padding: 12px 15px;
    border-radius: 25px;
  }

  .whatsapp-button svg {
    width: 20px;
    height: 20px;
  }

  .button-text {
    font-size: 13px;
  }

  .whatsapp-popup {
    width: 280px;
    bottom: 70px;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 50vh;
    padding: 4rem 0.8rem 3rem;
  }

  .hero h1 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
  }

  .hero p {
    font-size: 0.85rem;
  }

  .product-layout {
    padding: 0.8rem;
  }

  .main-image {
    height: 200px;
  }

  .thumbnail-images {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }

  .product-title {
    font-size: 1.3rem;
  }

  .product-price {
    font-size: 1.3rem;
  }

  .tab-btn {
    padding: 0.5rem 0.8rem;
    font-size: 0.8rem;
  }

  .footer-column h3 {
    font-size: 0.95rem;
  }
}
