:root {
  --primary: #000;
  --secondary: #222;
  --light-gray: #f5f5f5;
  --medium-gray: #e0e0e0;
  --dark-gray: #333;
  --text: #1a1a1a;
  --white: #fff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", "Segoe UI", -apple-system, BlinkMacSystemFont,
    sans-serif;
}

body {
  background-color: var(--white);
  color: var(--text);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Header & Navigation */
header {
  background-color: var(--primary);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-decoration: none;
}

.nav-menu {
  display: flex;
  list-style: none;
}

.nav-menu li {
  margin-left: 2rem;
}

.nav-menu a {
  color: var(--white);
  text-decoration: none;
  font-size: 1rem;
  transition: opacity 0.3s;
}

.nav-menu a:hover {
  opacity: 0.7;
}

.mobile-nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

.cart-icon {
  color: var(--white);
  font-size: 1.3rem;
  position: relative;
  cursor: pointer;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: var(--white);
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: bold;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Hero Banner */
.hero {
  height: 80vh;
  background-color: var(--secondary);
  color: var(--white);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  padding: 2rem;
  z-index: 2;
  max-width: 600px;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-weight: 800;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background-color: var(--white);
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s;
  border: 2px solid var(--white);
  cursor: pointer;
}

.btn:hover {
  background-color: transparent;
  color: var(--white);
}

.hero-image {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 50%;
  height: 100%;
  background-image: url("../Images/P3.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.8;
}

/* About Section */
.about {
  padding: 5rem 0;
  background-color: var(--light-gray);
}

.about-container {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.about-image {
  flex: 1;
  height: 400px;
  background-image: url("../Images/Team/About.jpeg");
  background-size: cover;
  background-position: center;
}

.about-content {
  flex: 1;
}

.about h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.about h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--primary);
}

.about p {
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* Products Section */
.products {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--primary);
}

.filter-container {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.filter-btn {
  padding: 0.5rem 1.5rem;
  background-color: var(--light-gray);
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
}

.filter-btn.active {
  background-color: var(--primary);
  color: var(--white);
}

.filter-btn:hover {
  background-color: var(--medium-gray);
}

.filter-btn.active:hover {
  background-color: var(--dark-gray);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
}

.product-card {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.product-img {
  height: 300px;
  background-size: cover;
  background-position: center;
}

.product-info {
  padding: 1.5rem;
}

.product-name {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.product-category {
  color: var(--dark-gray);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.product-description {
  color: var(--dark-gray);
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-price {
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.add-to-cart {
  width: 100%;
  padding: 0.8rem 0;
  background-color: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}

.add-to-cart:hover {
  background-color: var(--dark-gray);
}

/* Gallery Section */
.gallery {
  padding: 5rem 0;
  background-color: var(--light-gray);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1rem;
}

.gallery-item {
  height: 300px;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  transition: transform 0.3s;
  cursor: pointer;
}

.gallery-item:hover {
  transform: scale(1.03);
}

/* Contact Section */
.contact {
  padding: 5rem 0;
  background-color: var(--white);
}

.contact-container {
  display: flex;
  gap: 3rem;
}

.contact-info {
  flex: 1;
}

.contact-form {
  flex: 2;
}

.contact h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

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

.contact-detail {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.contact-icon {
  margin-right: 1rem;
  font-size: 1.2rem;
}

.contact-detail p {
  line-height: 1.5;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--medium-gray);
  border-radius: 4px;
  font-size: 1rem;
}

textarea.form-control {
  height: 150px;
  resize: vertical;
}

.mobile-only-cart {
  display: none;
}

/* Footer */
footer {
  background-color: var(--primary);
  color: var(--white);
  padding: 3rem 0 1rem;
}

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

.footer-column h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-column h3::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--white);
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: var(--medium-gray);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--white);
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--dark-gray);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s;
}

.social-icon:hover {
  background-color: var(--white);
  color: var(--primary);
}

.copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--dark-gray);
  font-size: 0.9rem;
  color: var(--medium-gray);
}

/* Modal for Add to Cart */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

.modal-content {
  background-color: var(--white);
  margin: 10% auto;
  padding: 2rem;
  border-radius: 8px;
  max-width: 500px;
  animation: modalOpen 0.3s;
}

@keyframes modalOpen {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 600;
}

.close-modal {
  font-size: 1.8rem;
  background: none;
  border: none;
  cursor: pointer;
}

.modal-body {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.modal-image {
  width: 120px;
  min-width: 120px;
  height: 120px;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  flex-shrink: 0;
}

.modal-product-info {
  flex: 1;
  min-width: 0;
}

.modal-product-info h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

#modal-product-price {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
}

.modal-product-description {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--dark-gray);
  margin-top: 0.75rem;
  margin-bottom: 1rem;
  font-weight: 400;
  max-height: 80px;
  overflow-y: auto;
  padding-right: 5px;
}

.size-selection {
  margin: 1.5rem 0;
}

.size-options {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.size-btn {
  width: 40px;
  height: 40px;
  border: 1px solid var(--medium-gray);
  background: none;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
}

.size-btn.selected {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.quantity-selector {
  display: flex;
  align-items: center;
  margin: 1.5rem 0;
}

.quantity-selector label {
  margin-right: 1rem;
}

.quantity-controls {
  display: flex;
  align-items: center;
  border: 1px solid var(--medium-gray);
  border-radius: 4px;
}

.quantity-btn {
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
}

.quantity-input {
  width: 50px;
  text-align: center;
  border: none;
  font-size: 1rem;
  padding: 0.5rem 0;
}

.modal-footer {
  display: flex;
  justify-content: space-between;
}

.continue-shopping {
  padding: 0.8rem 1.5rem;
  background: none;
  border: 1px solid var(--primary);
  color: var(--primary);
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.continue-shopping:hover {
  background-color: var(--light-gray);
}

.btn-add-to-cart {
  padding: 0.8rem 1.5rem;
}

/* Alert Modal Styles */
.alert-modal-content {
  max-width: 400px;
  text-align: center;
}

.alert-modal-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  margin-bottom: 1.5rem;
}

.alert-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.alert-icon.warning {
  background-color: #ff9800;
}

.alert-icon.error {
  background-color: #f44336;
}

.alert-icon.success {
  background-color: #4caf50;
}

.alert-icon.info {
  background-color: #2196f3;
}

.alert-message {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--dark-gray);
  margin: 0;
}

.alert-modal-footer {
  display: flex;
  justify-content: center;
  padding-top: 1rem;
  border-top: 1px solid var(--light-gray);
}

.btn-alert-ok {
  padding: 0.8rem 2rem;
  min-width: 120px;
}

/* Cart Drawer */
.cart-drawer {
  position: fixed;
  top: 0;
  right: -400px;
  width: 350px;
  height: 100%;
  background-color: var(--white);
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease-in-out;
  z-index: 1000;
}

.cart-drawer.open {
  right: 0;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid var(--medium-gray);
}

.cart-title {
  font-size: 1.3rem;
  font-weight: 600;
}

.close-cart {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.cart-items {
  max-height: calc(100% - 200px);
  overflow-y: auto;
  padding: 1rem;
}

.cart-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--medium-gray);
}

.cart-item-image {
  width: 80px;
  height: 80px;
  background-size: cover;
  background-position: center;
}

.cart-item-info {
  flex: 1;
}

.cart-item-title {
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.cart-item-variant {
  font-size: 0.9rem;
  color: var(--dark-gray);
  margin-bottom: 0.3rem;
}

.cart-item-price {
  font-weight: 600;
}

.cart-item-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.5rem;
}

.cart-item-quantity {
  display: flex;
  align-items: center;
  border: 1px solid var(--medium-gray);
  border-radius: 4px;
}

.cart-quantity-btn {
  width: 25px;
  height: 25px;
  background: none;
  border: none;
  font-size: 1rem;
  cursor: pointer;
}

.cart-quantity-input {
  width: 30px;
  text-align: center;
  border: none;
  font-size: 0.9rem;
}

.remove-item {
  color: var(--dark-gray);
  background: none;
  border: none;
  font-size: 0.9rem;
  cursor: pointer;
  transition: color 0.3s;
}

.remove-item:hover {
  color: var(--primary);
}

/* Event Ticket in Cart */
.cart-item.event-ticket {
  border-left: 3px solid var(--primary);
}

.cart-item.event-ticket .cart-item-variant {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.cart-item.event-ticket .cart-item-variant i {
  color: var(--primary);
}

.cart-footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 1.5rem;
  border-top: 1px solid var(--medium-gray);
  background-color: var(--white);
}

.cart-savings {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  color: #28a745;
  font-weight: 600;
  font-size: 0.95rem;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.total-label {
  font-weight: 600;
}

.total-amount {
  font-weight: 700;
  font-size: 1.2rem;
}

.checkout-btn {
  width: 100%;
  padding: 1rem 0;
  background-color: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}

.checkout-btn:hover {
  background-color: var(--dark-gray);
}

/* ============================================
   Comprehensive Responsive Styles
   ============================================ */

/* Large Desktop (1400px and above) */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
    padding: 0 30px;
  }

  .hero h1 {
    font-size: 4rem;
  }

  .section-title {
    font-size: 3rem;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2.5rem;
  }
}

/* Desktop (1200px - 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
  .container {
    max-width: 1140px;
  }
}

/* Laptop/Tablet Landscape (992px - 1199px) */
@media (max-width: 1199px) {
  .container {
    padding: 0 25px;
  }

  .hero h1 {
    font-size: 3.2rem;
  }

  .section-title {
    font-size: 2.3rem;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
  }

  .about-container {
    gap: 3rem;
  }

  .contact-container {
    gap: 2rem;
  }
}

/* Tablet (768px - 991px) */
@media (max-width: 992px) {
  .container {
    padding: 0 20px;
  }

  .hero {
    height: 70vh;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .about-container {
    flex-direction: column;
    gap: 2rem;
  }

  .about-image {
    width: 100%;
    height: 350px;
  }

  .about h2 {
    font-size: 2.2rem;
  }

  .section-title {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
  }

  .product-img {
    height: 280px;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
  }

  .contact-container {
    flex-direction: column;
    gap: 2rem;
  }

  .contact-info,
  .contact-form {
    flex: 1;
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

/* Mobile Large (576px - 767px) */
@media (max-width: 768px) {
  /* Navbar responsive styles are handled by navbar.css */

  .container {
    padding: 0 15px;
  }

  .hero {
    height: 60vh;
    flex-direction: column;
    justify-content: center;
  }

  .hero-content {
    text-align: center;
    margin: 0 auto;
    padding: 1.5rem;
    max-width: 100%;
  }

  .hero h1 {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
  }

  .hero p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .hero-image {
    width: 100%;
    height: 100%;
    opacity: 0.3;
    position: absolute;
    top: 0;
    left: 0;
  }

  .btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.95rem;
  }

  .about {
    padding: 3rem 0;
  }

  .about-image {
    height: 300px;
  }

  .about h2 {
    font-size: 2rem;
  }

  .about p {
    font-size: 0.95rem;
  }

  .products {
    padding: 3rem 0;
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .section-title::after {
    width: 60px;
  }

  .filter-container {
    gap: 0.75rem;
  }

  .filter-btn {
    padding: 0.45rem 1.2rem;
    font-size: 0.9rem;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .product-card {
    margin-bottom: 0;
  }

  .product-img {
    height: 200px;
  }

  .product-info {
    padding: 1rem;
  }

  .product-name {
    font-size: 1rem;
  }

  .product-price {
    font-size: 1.1rem;
  }

  .add-to-cart {
    padding: 0.6rem 0;
    font-size: 0.9rem;
  }

  .gallery {
    padding: 3rem 0;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.75rem;
  }

  .gallery-item {
    height: 250px;
  }

  .contact {
    padding: 3rem 0;
  }

  .contact h2 {
    font-size: 1.8rem;
  }

  .form-group {
    margin-bottom: 1.2rem;
  }

  .form-control {
    padding: 0.7rem 0.9rem;
    font-size: 0.95rem;
  }

  textarea.form-control {
    height: 120px;
  }

  .modal-content {
    width: 90%;
    max-width: 500px;
    margin: 2rem auto;
  }

  .modal-body {
    flex-direction: column;
  }

  .modal-image {
    width: 100%;
    min-width: 100%;
    height: 200px;
    margin-bottom: 1rem;
  }
  
  .modal-product-info {
    width: 100%;
  }
  
  .modal-product-description {
    font-size: 0.9rem;
    max-height: 80px;
  }

  .cart-drawer {
    width: 100%;
    right: -100%;
  }

  .mobile-only-cart {
    display: block;
  }

  .desktop-only-cart {
    display: none;
  }

  .design-shirt-section {
    margin: 1.5rem 0;
  }

  .design-shirt-section .btn-design-shirt {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

/* Designer Button Styling for Index Page */
.design-shirt-section {
  margin: 2rem 0;
  text-align: center;
}

.design-shirt-section .btn-design-shirt {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.1rem 2.8rem;
  font-size: 1.15rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  border: none;
  border-radius: 35px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25), 0 2px 8px rgba(0, 0, 0, 0.15);
  text-decoration: none;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.design-shirt-section .btn-design-shirt::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;
}

.design-shirt-section .btn-design-shirt:hover::before {
  left: 100%;
}

.design-shirt-section .btn-design-shirt:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35), 0 4px 12px rgba(0, 0, 0, 0.2);
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
}

.design-shirt-section .btn-design-shirt:active {
  transform: translateY(-1px) scale(0.98);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.design-shirt-section .btn-design-shirt i {
  font-size: 1.4rem;
  transition: transform 0.3s ease;
  display: inline-block !important;
  line-height: 1;
  vertical-align: middle;
  opacity: 1 !important;
  visibility: visible !important;
  font-style: normal !important;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: 'LineIcons' !important;
  width: auto !important;
  height: auto !important;
  color: white !important;
}

.design-shirt-section .btn-design-shirt i::before {
  display: inline-block !important;
  font-family: 'LineIcons' !important;
}

.design-shirt-section .btn-design-shirt:hover i {
  transform: rotate(15deg) scale(1.15);
}

.design-shirt-section .btn-design-shirt span {
  display: inline-block;

  /* Modified section - Showing exactly 2 products per row in mobile view */
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .product-card {
    /* Adjust product card for smaller size */
    margin-bottom: 1rem;
  }

  .product-img {
    height: 200px; /* Smaller image height for mobile */
  }

  .product-info {
    padding: 1rem;
  }

  .product-name {
    font-size: 1rem;
  }

  .product-price {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }

  .add-to-cart {
    padding: 0.6rem 0;
    font-size: 0.9rem;
  }
}

/* Mobile (480px - 575px) */
@media (max-width: 576px) {
  .container {
    padding: 0 12px;
  }

  .hero {
    height: 55vh;
    padding: 1rem 0;
  }

  .hero-content {
    padding: 1rem;
  }

  .hero h1 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .hero p {
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
  }

  .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }

  .about {
    padding: 2.5rem 0;
  }

  .about-image {
    height: 250px;
  }

  .about h2 {
    font-size: 1.8rem;
  }

  .about p {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .products {
    padding: 2.5rem 0;
  }

  .section-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }

  .section-title::after {
    width: 50px;
    height: 2px;
  }

  .filter-container {
    gap: 0.5rem;
    margin-bottom: 1.5rem;
  }

  .filter-btn {
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
  }

  /* Keep the 2-column layout even on very small devices */
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .product-img {
    height: 150px;
  }

  .product-info {
    padding: 0.8rem;
  }

  .product-name {
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
  }

  .product-category {
    font-size: 0.8rem;
  }

  .product-description {
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
  }

  .product-price {
    font-size: 1rem;
    margin-bottom: 0.8rem;
  }

  .add-to-cart {
    padding: 0.5rem 0;
    font-size: 0.85rem;
  }

  .gallery {
    padding: 2.5rem 0;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .gallery-item {
    height: 200px;
  }

  .contact {
    padding: 2.5rem 0;
  }

  .contact h2 {
    font-size: 1.6rem;
  }

  .contact-detail {
    margin-bottom: 0.8rem;
  }

  .contact-icon {
    font-size: 1rem;
    margin-right: 0.8rem;
  }

  .form-control {
    padding: 0.6rem 0.8rem;
    font-size: 0.9rem;
  }

  textarea.form-control {
    height: 100px;
  }

  .modal-content {
    width: 95%;
    margin: 1rem auto;
    padding: 1rem;
  }

  .modal-header h3 {
    font-size: 1.2rem;
  }

  .modal-image {
    height: 180px;
  }

  .modal-product-name {
    font-size: 1.1rem;
  }

  .modal-product-price {
    font-size: 1.2rem;
  }

  .design-shirt-section .btn-design-shirt {
    padding: 0.9rem 1.5rem;
    font-size: 0.95rem;
    width: 100%;
    max-width: 300px;
  }

  .footer-top {
    padding: 2.5rem 0 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-column h3 {
    font-size: 1.1rem;
  }
}

/* Small Mobile (360px - 479px) */
@media (max-width: 480px) {
  .container {
    padding: 0 10px;
  }

  .hero {
    height: 50vh;
  }

  .hero h1 {
    font-size: 1.75rem;
  }

  .hero p {
    font-size: 0.9rem;
  }

  .btn {
    padding: 0.55rem 1rem;
    font-size: 0.85rem;
  }

  .about h2 {
    font-size: 1.6rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .products-grid {
    gap: 0.5rem;
  }

  .product-img {
    height: 140px;
  }

  .product-info {
    padding: 0.7rem;
  }

  .product-name {
    font-size: 0.9rem;
  }

  .product-price {
    font-size: 0.95rem;
  }

  .gallery-item {
    height: 180px;
  }

  .contact h2 {
    font-size: 1.4rem;
  }

  .form-control {
    padding: 0.55rem 0.7rem;
    font-size: 0.85rem;
  }

  .design-shirt-section .btn-design-shirt {
    padding: 0.8rem 1.2rem;
    font-size: 0.9rem;
  }
}

/* Extra Small Mobile (below 360px) */
@media (max-width: 360px) {
  .container {
    padding: 0 8px;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .hero p {
    font-size: 0.85rem;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .products-grid {
    gap: 0.4rem;
  }

  .product-img {
    height: 130px;
  }

  .product-info {
    padding: 0.6rem;
  }

  .product-name {
    font-size: 0.85rem;
  }

  .product-price {
    font-size: 0.9rem;
  }

  .add-to-cart {
    font-size: 0.8rem;
    padding: 0.45rem 0;
  }

  .gallery-item {
    height: 160px;
  }
}
