* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0d1b2a 100%);
  color: #fff;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border-radius: 50px;
  z-index: 1000;
  transition: 0.4s;
}

.logo-container {
  flex: 0 0 auto;
  background: white;
  padding: 8px 12px;
  border-radius: 50px;
  backdrop-filter: blur(150px);
}

.logo-container img {
  height: 50px;
  transition: 0.3s;
}

.logo-container img:hover {
  transform: scale(1.05);
}

nav {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-left: 30px;
}

nav a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
  font-weight: 500;
}

nav a:hover,
nav a.active {
  color: #ff9900;
}

.navbar-right {
  display: flex;
  align-items: center;
}

.cart-icon {
  position: relative;
  font-size: 1.3rem;
  margin-left: 20px;
  cursor: pointer;
}

.cart-icon:hover {
  color: #ff9900;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -12px;
  background: #ff9900;
  color: black;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: bold;
}

/* Buttons */
.btn-luxury {
  display: inline-block;
  padding: 15px 40px;
  border-radius: 50px;
  background: linear-gradient(45deg, #ff9900, #ff3c00);
  color: white;
  text-decoration: none;
  transition: 0.4s;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.btn-luxury:hover {
  transform: scale(1.1);
  box-shadow: 0 0 30px #ff9900;
}

.btn-outline {
  display: inline-block;
  padding: 15px 40px;
  border-radius: 50px;
  background: transparent;
  color: #ff9900;
  text-decoration: none;
  border: 2px solid #ff9900;
  transition: 0.4s;
  cursor: pointer;
  font-weight: 600;
}

.btn-outline:hover {
  background: #ff9900;
  color: #000;
}

.btn-small {
  padding: 10px 25px;
  background: #ff9900;
  color: white;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.btn-small:hover {
  background: #ff3c00;
  transform: translateY(-2px);
}

.btn-remove {
  background: #ff3c00;
  color: white;
  border: none;
  padding: 8px 15px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.btn-remove:hover {
  background: #cc2200;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: url('../images/hero/printing-press-hero.jpg') center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  margin-top: 100px;
}

.hero::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.9), rgba(0,0,0,0.5));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  animation: fadeInUp 1s ease;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
  font-size: 1.3rem;
  margin: 20px 0;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

/* Shop Hero */
.shop-hero {
  height: 300px;
  background: linear-gradient(135deg, #ff9900 0%, #ff3c00 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 100px;
}

.shop-hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.shop-hero p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Featured Products */
.featured-products {
  padding: 120px 10%;
  text-align: center;
  position: relative;
  background: linear-gradient(135deg, #0d1726 0%, #1a2b3a 50%, #0f1f2e 100%);
}

/* Page Containers Background */
.shop-container,
.cart-container,
.checkout-container,
.confirmation-container,
.gallery-grid,
.upload-container {
  background: linear-gradient(135deg, #0a0a0a 0%, #161b2a 50%, #0c1018 100%) !important;
}

.section-header {
  margin-bottom: 60px;
  animation: fadeIn 1s ease;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.section-header p {
  font-size: 1.1rem;
  opacity: 0.7;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.featured-product-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  overflow: hidden;
  transition: 0.4s;
  cursor: pointer;
  border: 1px solid rgba(255, 153, 0, 0.1);
}

.featured-product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 153, 0, 0.3);
  border-color: rgba(255, 153, 0, 0.5);
}

.product-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  overflow: hidden;
  transition: 0.4s;
  cursor: pointer;
  border: 1px solid rgba(255, 153, 0, 0.1);
  position: relative;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 153, 0, 0.3);
  border-color: rgba(255, 153, 0, 0.5);
}

.product-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
  background: rgba(0,0,0,0.3);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

.product-card:hover .product-image img,
.featured-product-card:hover .product-image img {
  transform: scale(1.1);
}

.stock-warning {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #ff3c00;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
}

.product-info {
  padding: 20px;
}

.product-info h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  min-height: 50px;
}

.product-category {
  color: #ff9900;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.product-price {
  font-size: 1.3rem;
  color: #ff9900;
  font-weight: bold;
  margin: 15px 0;
}

.section-center {
  text-align: center;
  margin-top: 60px;
}

/* Why Choose Section */
.why-parvaaz {
  padding: 120px 10%;
  text-align: center;
  background: linear-gradient(135deg, #1a1f2e 0%, #0f1622 50%, #1a2b3a 100%);
}

.why-parvaaz h2 {
  font-size: 2.5rem;
  margin-bottom: 60px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 15px;
  border: 1px solid rgba(255, 153, 0, 0.1);
  transition: 0.4s;
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 153, 0, 0.2);
}

.benefit-card i {
  font-size: 2.5rem;
  color: #ff9900;
  margin-bottom: 20px;
}

.benefit-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.benefit-card p {
  opacity: 0.8;
}

/* Shop Container */
.shop-container {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 40px;
  padding: 60px 10%;
  min-height: 800px;
}

.filters {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 15px;
  height: fit-content;
  position: sticky;
  top: 150px;
}

.filters h3 {
  margin: 20px 0 15px 0;
  font-size: 1.2rem;
}

.filter-group {
  margin-bottom: 30px;
}

.filter-group label {
  display: block;
  margin-bottom: 12px;
  cursor: pointer;
  transition: 0.2s;
}

.filter-group label:hover {
  color: #ff9900;
}

.filter-group input[type="radio"] {
  margin-right: 8px;
  cursor: pointer;
}

#sortBy {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: 1px solid rgba(255, 153, 0, 0.3);
  cursor: pointer;
}

.products-section {
  margin-top: 0;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  animation: fadeIn 0.3s ease;
}

.modal-content {
  background: #1a1a1a;
  margin: 5% auto;
  padding: 0;
  border-radius: 15px;
  width: 90%;
  max-width: 900px;
  overflow: hidden;
  box-shadow: 0 0 50px rgba(255, 153, 0, 0.3);
}

.modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 40px;
}

.modal-image {
  width: 100%;
}

.modal-image img {
  width: 100%;
  border-radius: 10px;
}

.modal-info h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.modal-details {
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 10px;
  margin: 20px 0;
}

.modal-details p {
  margin: 10px 0;
}

.quantity-selector {
  margin: 20px 0;
}

.quantity-selector label {
  display: block;
  margin-bottom: 10px;
}

.quantity-selector input {
  width: 80px;
  padding: 10px;
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: 1px solid rgba(255, 153, 0, 0.3);
}

.close {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 2rem;
  cursor: pointer;
  color: #fff;
  transition: 0.3s;
}

.close:hover {
  color: #ff9900;
}

/* Cart Page */
.cart-hero {
  height: 300px;
  background: linear-gradient(135deg, #ff9900 0%, #ff3c00 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 100px;
}

.cart-container {
  padding: 60px 10%;
  min-height: 600px;
}

.empty-cart {
  text-align: center;
  padding: 60px 20px;
}

.empty-cart i {
  font-size: 5rem;
  color: #ff9900;
  margin-bottom: 20px;
  opacity: 0.3;
}

.empty-cart h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  opacity: 0.7;
}

.empty-cart p {
  opacity: 0.6;
  margin-bottom: 30px;
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 40px;
}

.cart-table thead {
  background: rgba(255, 153, 0, 0.1);
}

.cart-table th {
  padding: 20px;
  text-align: left;
  font-weight: 600;
}

.cart-table td {
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cart-item-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.cart-item-info img {
  width: 50px;
  height: 50px;
  border-radius: 5px;
  object-fit: cover;
}

.quantity-control {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.quantity-control button {
  background: #ff9900;
  color: black;
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

.quantity-control button:hover {
  background: #ff3c00;
}

.quantity-control input {
  width: 50px;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: 1px solid rgba(255, 153, 0, 0.3);
  border-radius: 5px;
  padding: 5px;
}

/* Cart Summary */
.cart-summary {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 40px;
  padding: 0 10%;
  margin-bottom: 60px;
}

.summary-box {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 15px;
  border: 1px solid rgba(255, 153, 0, 0.2);
  height: fit-content;
  position: sticky;
  top: 150px;
}

.summary-box h3 {
  margin-bottom: 30px;
  font-size: 1.5rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.summary-row.total {
  border-bottom: 2px solid #ff9900;
  margin-top: 20px;
  padding-top: 20px;
  font-size: 1.3rem;
  font-weight: bold;
  color: #ff9900;
}

.checkout-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin: 30px 0;
}

.checkout-actions a {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.promo-section {
  margin-top: 20px;
  display: flex;
  gap: 10px;
}

.promo-section input {
  flex: 1;
  padding: 10px 15px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: 1px solid rgba(255, 153, 0, 0.3);
  border-radius: 5px;
}

.promo-section input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* Checkout Page */
.checkout-hero {
  height: 250px;
  background: linear-gradient(135deg, #ff9900 0%, #ff3c00 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 100px;
}

.checkout-container {
  padding: 60px 10%;
}

.checkout-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.checkout-form-section {
  background: rgba(255, 255, 255, 0.03);
  padding: 40px;
  border-radius: 15px;
  border: 1px solid rgba(255, 153, 0, 0.1);
}

.checkout-form-section h2 {
  font-size: 1.8rem;
  margin-bottom: 30px;
}

.checkout-form-section h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: #ff9900;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: 1px solid rgba(255, 153, 0, 0.3);
  border-radius: 5px;
  transition: 0.3s;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #ff9900;
  box-shadow: 0 0 10px rgba(255, 153, 0, 0.3);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.delivery-options {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

.delivery-option {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  border: 2px solid rgba(255, 153, 0, 0.1);
  cursor: pointer;
  transition: 0.3s;
}

.delivery-option:hover {
  border-color: rgba(255, 153, 0, 0.5);
}

.delivery-option input[type="radio"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.option-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.option-info strong {
  display: block;
  margin-bottom: 5px;
}

.option-info span {
  font-size: 0.9rem;
  opacity: 0.7;
}

.option-price {
  font-weight: bold;
  color: #ff9900;
}

.payment-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 30px;
}

.payment-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  border: 2px solid rgba(255, 153, 0, 0.1);
  cursor: pointer;
  transition: 0.3s;
}

.payment-option:hover {
  border-color: rgba(255, 153, 0, 0.5);
}

.payment-option input[type="radio"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.payment-option i {
  font-size: 2rem;
  color: #ff9900;
}

.payment-option span {
  text-align: center;
  font-size: 0.95rem;
}

.terms {
  margin-bottom: 20px;
}

.terms label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.terms input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.terms a {
  color: #ff9900;
  text-decoration: none;
}

.terms a:hover {
  text-decoration: underline;
}

/* Order Summary Section */
.order-summary-section {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 15px;
  border: 1px solid rgba(255, 153, 0, 0.2);
  height: fit-content;
  position: sticky;
  top: 150px;
}

.order-summary-section h2 {
  margin-bottom: 25px;
  font-size: 1.5rem;
}

.order-items {
  max-height: 400px;
  overflow-y: auto;
  margin-bottom: 20px;
}

.order-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.order-item:last-child {
  border-bottom: none;
}

.summary-divider {
  height: 2px;
  background: rgba(255, 153, 0, 0.3);
  margin: 20px 0;
}

.summary-detail {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.summary-detail.total {
  border-top: 2px solid #ff9900;
  padding-top: 15px;
  margin-top: 15px;
  font-size: 1.2rem;
  font-weight: bold;
  color: #ff9900;
}

.info-box,
.support-box {
  background: rgba(255, 153, 0, 0.1);
  padding: 15px;
  border-radius: 10px;
  margin-top: 20px;
  border-left: 4px solid #ff9900;
  font-size: 0.95rem;
}

.support-box {
  background: rgba(0, 0, 0, 0.3);
  border-left-color: #ff9900;
}

.support-box p {
  margin: 10px 0;
}

.support-box a {
  color: #ff9900;
  text-decoration: none;
}

.support-box a:hover {
  text-decoration: underline;
}

/* Confirmation Page */
.confirmation-container {
  padding: 60px 10%;
  text-align: center;
  margin-top: 100px;
  min-height: 600px;
}

.confirmation-box {
  max-width: 700px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  padding: 50px 30px;
  border-radius: 20px;
  border: 1px solid rgba(255, 153, 0, 0.2);
}

.success-icon {
  font-size: 5rem;
  color: #4CAF50;
  margin-bottom: 20px;
  animation: pulse 1s ease-out;
}

.confirmation-box h1 {
  font-size: 2.5rem;
  color: #4CAF50;
  margin-bottom: 15px;
}

.confirmation-message {
  font-size: 1.1rem;
  opacity: 0.8;
  margin-bottom: 40px;
}

.order-confirmation-details {
  background: rgba(0, 0, 0, 0.3);
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 40px;
  text-align: left;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.detail-row span.highlight {
  color: #ff9900;
  font-weight: bold;
}

.next-steps {
  margin: 40px 0;
}

.next-steps h2 {
  margin-bottom: 30px;
}

.steps-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.step {
  display: flex;
  gap: 15px;
  padding: 20px;
  background: rgba(255, 153, 0, 0.05);
  border-radius: 10px;
  border-left: 4px solid #ff9900;
}

.step-number {
  min-width: 40px;
  width: 40px;
  height: 40px;
  background: #ff9900;
  color: black;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}

.step-content {
  text-align: left;
}

.step-content h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.step-content p {
  font-size: 0.9rem;
  opacity: 0.7;
}

.confirmation-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 30px 0;
}

.confirmation-actions a {
  padding: 15px 30px;
  text-align: center;
}

.support-info {
  background: rgba(0, 0, 0, 0.3);
  padding: 30px;
  border-radius: 15px;
  margin-top: 30px;
}

.support-info h3 {
  margin-bottom: 10px;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.contact-method {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 15px;
  background: rgba(255, 153, 0, 0.1);
  border-radius: 10px;
  text-decoration: none;
  color: white;
  transition: 0.3s;
}

.contact-method:hover {
  background: rgba(255, 153, 0, 0.2);
  transform: translateY(-5px);
}

.contact-method i {
  font-size: 1.5rem;
  color: #ff9900;
}

/* Contact Section */
.contact {
  padding: 100px 10%;
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
}

.contact h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.contact p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.8;
}

.contact-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.contact-info {
  font-size: 1.1rem;
  opacity: 0.8;
}

.contact-info p {
  margin: 10px 0;
}

/* Location Section */
.location-section {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
  padding: 80px 10%;
  color: #fff;
}

.location-container {
  max-width: 1200px;
  margin: 0 auto;
}

.location-container h2 {
  font-size: 3rem;
  margin-bottom: 10px;
  background: linear-gradient(45deg, #ff9900, #ff3c00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
}

.location-container > p {
  text-align: center;
  color: #bbb;
  font-size: 1.1rem;
  margin-bottom: 50px;
}

.location-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.map-wrapper {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(255, 153, 0, 0.2);
  aspect-ratio: 4/3;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
}

.location-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

.info-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 153, 0, 0.2);
  border-radius: 12px;
  padding: 25px;
  transition: 0.3s;
  backdrop-filter: blur(10px);
}

.info-card:hover {
  background: rgba(255, 153, 0, 0.1);
  border-color: rgba(255, 153, 0, 0.5);
  transform: translateY(-5px);
}

.info-card i {
  font-size: 2rem;
  background: linear-gradient(45deg, #ff9900, #ff3c00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 15px;
}

.info-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #fff;
}

.info-card p {
  color: #bbb;
  margin-bottom: 15px;
  line-height: 1.6;
}

.info-card .btn-outline {
  display: inline-block;
  padding: 10px 20px;
  border: 2px solid rgba(255, 153, 0, 0.5);
  color: #ff9900;
  text-decoration: none;
  border-radius: 8px;
  transition: 0.3s;
  font-size: 0.95rem;
}

.info-card .btn-outline:hover {
  background: linear-gradient(45deg, #ff9900, #ff3c00);
  color: white;
  border-color: transparent;
}

@media (max-width: 768px) {
  .location-section {
    padding: 60px 5%;
  }

  .location-container h2 {
    font-size: 2rem;
  }

  .location-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .map-wrapper {
    aspect-ratio: auto;
    min-height: 300px;
  }

  .location-info {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .location-section {
    padding: 40px 3%;
  }

  .location-container h2 {
    font-size: 1.8rem;
  }

  .location-container > p {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .info-card {
    padding: 20px;
  }

  .info-card h3 {
    font-size: 1.1rem;
  }
}

/* Footer */
footer {
  background: #000;
  padding: 60px 10% 20px;
  border-top: 1px solid rgba(255, 153, 0, 0.2);
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h4 {
  margin-bottom: 15px;
  color: #ff9900;
}

.footer-section p {
  opacity: 0.7;
  margin-bottom: 12px;
  line-height: 1.8;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section a {
  color: white;
  text-decoration: none;
  opacity: 0.7;
  transition: 0.3s;
}

.footer-section a:hover {
  color: #ff9900;
  opacity: 1;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 153, 0, 0.1);
  opacity: 0.6;
}

/* Notification */
.notification {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #4CAF50;
  color: white;
  padding: 15px 25px;
  border-radius: 10px;
  z-index: 3000;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.3s;
}

.notification.show {
  opacity: 1;
  transform: translateY(0);
}

/* Articles Section */
.articles-section {
  padding: 120px 10%;
  background: linear-gradient(135deg, #0f1418 0%, #1a252e 50%, #0d1721 100%);
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.article-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid rgba(255, 153, 0, 0.1);
  transition: 0.4s;
  display: flex;
  flex-direction: column;
}

.article-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 153, 0, 0.2);
  border-color: rgba(255, 153, 0, 0.5);
}

.article-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

.article-card:hover .article-image img {
  transform: scale(1.1);
}

.article-content {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.article-category {
  display: inline-block;
  background: rgba(255, 153, 0, 0.2);
  color: #ff9900;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  margin-bottom: 15px;
  width: fit-content;
  font-weight: 600;
}

.article-content h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  line-height: 1.4;
  min-height: 60px;
}

.article-excerpt {
  opacity: 0.8;
  margin-bottom: 20px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.article-full-text {
  margin-bottom: 20px;
  line-height: 1.8;
  font-size: 0.95rem;
  text-align: justify;
  max-height: 600px;
  overflow-y: auto;
}

.article-full-text p {
  margin-bottom: 15px;
  opacity: 0.9;
}

.article-full-text strong {
  color: #ff9900;
}

.read-more-btn {
  align-self: flex-start;
  background: #ff9900;
  color: black;
  padding: 10px 25px;
  border-radius: 25px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
  margin-top: auto;
}

.read-more-btn:hover {
  background: #ff3c00;
  transform: translateX(5px);
}

/* Hero Background Image */
.hero {
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.9), rgba(0,0,0,0.5));
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
}

@media (max-width: 768px) {
  .articles-grid {
    grid-template-columns: 1fr;
  }

  .article-content h3 {
    font-size: 1.2rem;
    min-height: auto;
  }

  .article-full-text {
    max-height: 400px;
    font-size: 0.9rem;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .shop-container {
    grid-template-columns: 1fr;
  }

  .filters {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    height: auto;
    position: static;
  }

  .modal-body {
    grid-template-columns: 1fr;
  }

  .checkout-content {
    grid-template-columns: 1fr;
  }

  .order-summary-section {
    position: static;
  }

  .cart-summary {
    grid-template-columns: 1fr;
  }

  .summary-box {
    position: static;
  }
}

@media (max-width: 768px) {
  .navbar {
    width: 95%;
    padding: 12px 20px;
  }

  nav {
    display: none;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
  }

  .cart-table {
    font-size: 0.9rem;
  }

  .cart-table th,
  .cart-table td {
    padding: 10px;
  }

  .checkout-form-section {
    padding: 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .payment-methods {
    grid-template-columns: 1fr;
  }

  .steps-list {
    grid-template-columns: 1fr;
  }
}

/* Contact Page */
.contact-section {
  padding: 80px 10%;
  background: linear-gradient(135deg, #0a0a0a 0%, #161b2a 50%, #0c1018 100%);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-form-wrapper {
  flex: 1;
}

.contact-info-wrapper {
  flex: 1;
}

.contact-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 15px;
  border: 1px solid rgba(255, 153, 0, 0.2);
}

.contact-card h2 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: #fff;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #fff;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 20px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: 1px solid rgba(255, 153, 0, 0.3);
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  transition: 0.3s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #ff9900;
  box-shadow: 0 0 15px rgba(255, 153, 0, 0.3);
  background: rgba(0, 0, 0, 0.7);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.info-icon {
  min-width: 60px;
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #ff9900, #ff3c00);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  flex-shrink: 0;
}

.info-content {
  flex: 1;
  text-align: left;
}

.info-content h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: #fff;
}

.info-content p {
  opacity: 0.8;
  margin: 5px 0;
}

.info-content a {
  color: #ff9900;
  text-decoration: none;
  transition: 0.3s;
}

.info-content a:hover {
  text-decoration: underline;
  opacity: 0.8;
}

/* Staff Section */
.staff-section {
  padding: 100px 10%;
  background: linear-gradient(135deg, #0f1418 0%, #1a252e 50%, #0d1721 100%);
}

.staff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 60px auto 0;
}

.staff-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  border: 1px solid rgba(255, 153, 0, 0.2);
  overflow: hidden;
  transition: 0.4s;
}

.staff-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 153, 0, 0.2);
  border-color: rgba(255, 153, 0, 0.5);
}

.staff-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.3);
}

.staff-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

.staff-card:hover .staff-image img {
  transform: scale(1.1);
}

.staff-content {
  padding: 30px;
}

.staff-content h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
  color: #fff;
}

.staff-content .designation {
  color: #ff9900;
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.staff-content .bio {
  opacity: 0.8;
  margin-bottom: 20px;
  line-height: 1.6;
  font-size: 0.95rem;
}

.staff-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 153, 0, 0.2);
}

.staff-contact a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ff9900;
  text-decoration: none;
  transition: 0.3s;
  font-size: 0.95rem;
}

.staff-contact a:hover {
  opacity: 0.8;
  transform: translateX(5px);
}

.staff-contact i {
  font-size: 1rem;
}

/* Footer */
.footer {
  background: #0a0a0a;
  color: white;
  padding: 60px 10% 30px;
  border-top: 1px solid rgba(255, 153, 0, 0.2);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.footer-section h4 {
  color: #ff9900;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.footer-section p {
  opacity: 0.7;
  line-height: 1.8;
  margin-bottom: 15px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section a {
  color: white;
  text-decoration: none;
  opacity: 0.7;
  transition: 0.3s;
}

.footer-section a:hover {
  color: #ff9900;
  opacity: 1;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 153, 0, 0.1);
  border-radius: 50%;
  transition: 0.3s;
}

.social-links a:hover {
  background: #ff9900;
  color: black;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 153, 0, 0.1);
  opacity: 0.6;
}

@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: 30px;
  }

  .contact-card h2 {
    font-size: 1.5rem;
  }

  .staff-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .staff-card {
    max-width: 100%;
  }

  .footer-content {
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 50px 15px;
  }

  .contact-card {
    padding: 20px;
  }

  .staff-section {
    padding: 50px 15px;
  }

  .staff-grid {
    gap: 20px;
  }

  .footer {
    padding: 40px 15px 20px;
  }
}

