:root {
  --primary: #d4a762; /* Or oriental gold */
  --primary-dark: #b78a4a;
  --secondary: #1e3a5f; /* Deep blue */
  --light: #f8f9fa;
  --dark: #2a2a2a;
  --success: #28a745;
  --traditional-pattern: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path fill="%23d4a762" fill-opacity="0.1" d="M50 0L100 50L50 100L0 50Z"/></svg>');
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #f5f5f5;
  color: #333;
  line-height: 1.6;
  background-image: var(--traditional-pattern);
  background-attachment: fixed;
}

section {
  scroll-margin-top: 120px;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Header Styles */
header {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid var(--primary);
}

.header-contact-info {
  display: flex;
  gap: 15px;
}

.header-contact-info a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.header-contact-info a:hover {
  color: var(--primary);
}

.header-top {
  background-color: var(--secondary);
  color: white;
  padding: 10px 0;
  font-size: 0.9rem;
}

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

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.contact-info a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-info a:hover {
  color: var(--primary);
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  color: white;
  transition: color 0.3s;
}

.social-links a:hover {
  color: var(--primary);
}

.main-header {
  padding: 15px 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 60px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text h1 {
  font-size: 1.8rem;
  color: var(--secondary);
  font-weight: 700;
  line-height: 1;
  font-family: "Georgia", serif;
}

.logo-text span {
  font-size: 0.9rem;
  color: var(--primary);
  font-weight: 500;
  letter-spacing: 1px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 25px;
}

nav ul li a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s;
  position: relative;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

nav ul li a:hover {
  color: var(--primary);
}

nav ul li a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.3s;
}

nav ul li a:hover::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--secondary);
  cursor: pointer;
}

/* Hero Section with Carousel */
.hero {
  position: relative;
  color: white;
  text-align: center;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center; /* Vertical center */
  justify-content: center; /* Horizontal center */
}

.hero .container {
  position: relative;
  z-index: 3;
  padding: 0 15px; /* Remove top/bottom padding since we're using flexbox */
}
.hero-carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
  z-index: 2;
}

.hero-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(212, 167, 98, 0.3) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.hero h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  font-weight: 700;
  position: relative;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 30px;
  position: relative;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--primary);
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid white;
  margin-left: 15px;
}

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

/* Traditional decorative elements */
.traditional-border {
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 40px;
}

.traditional-border::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 8px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--primary) 20%,
    var(--primary) 80%,
    transparent 100%
  );
  border-radius: 4px;
}

/* About Section */
.section {
  padding: 80px 0;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.3rem;
  color: var(--secondary);
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
  font-family: "Georgia", serif;
}

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

.section-title p {
  color: #666;
  max-width: 700px;
  margin: 15px auto 0;
  font-size: 1.1rem;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-image {
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 5px solid white;
  position: relative;
}

.about-image::before {
  content: "";
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  border: 2px dashed var(--primary);
  z-index: -1;
  border-radius: 12px;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s;
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-text {
  flex: 1;
}

.about-text h3 {
  font-size: 1.8rem;
  color: var(--secondary);
  margin-bottom: 20px;
  font-family: "Georgia", serif;
}

.about-text p {
  margin-bottom: 15px;
  color: #555;
  line-height: 1.7;
}

.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background-color: rgba(255, 255, 255, 0.7);
  padding: 15px;
  border-radius: 8px;
  border-left: 3px solid var(--primary);
}

.feature-icon {
  color: var(--primary);
  font-size: 1.5rem;
  margin-top: 3px;
}

.feature-text h4 {
  font-size: 1.1rem;
  color: var(--secondary);
  margin-bottom: 5px;
}

.feature-text p {
  font-size: 0.9rem;
  color: #666;
}

.catalogue-cta {
  text-align: center;
  margin: 2rem auto;
}

.catalogue-cta h3 {
  font-size: 1.1rem;
  color: var(--secondary);
  margin-bottom: 5px;
}

.catalogue-cta p {
  margin-bottom: 15px;
}

/* Products Section */
.products {
  background-color: #f9f9f9;
}

.product-categories {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.category-btn {
  padding: 8px 20px;
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.category-btn:hover,
.category-btn.active {
  background-color: var(--primary);
  color: white;
  border-color: var(--primary);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.product-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  border: 1px solid #eee;
}

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

.product-image {
  height: 300px;
  overflow: hidden;
  position: relative;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

.product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--primary);
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
}

.product-content {
  padding: 20px;
  text-align: center;
}

.product-category {
  display: inline-block;
  color: var(--primary);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-title {
  font-size: 1.2rem;
  color: var(--secondary);
  margin-bottom: 10px;
  font-weight: 700;
}

.product-description {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.6;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
  border-top: 1px dashed #eee;
  padding-top: 15px;
}

.product-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--secondary);
}

.product-price span {
  font-size: 0.9rem;
  color: #999;
  font-weight: 400;
  text-decoration: line-through;
  margin-left: 5px;
}

.add-to-cart {
  background-color: var(--primary);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}

.add-to-cart:hover {
  background-color: var(--primary-dark);
  transform: rotate(360deg);
}

/* Brands Section */
.brands {
  background-color: white;
  padding: 60px 0;
}

.brand-slider {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.brand-item {
  flex: 1;
  min-width: 150px;
  max-width: 200px;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s;
  padding: 20px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.brand-item:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: translateY(-5px);
}

.brand-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Randa Special Section */
.randa-special {
  background: linear-gradient(rgba(30, 58, 95, 0.9), rgba(30, 58, 95, 0.9)),
    url("https://images.unsplash.com/photo-1601050690597-df0568f70950?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 80px 0;
  text-align: center;
}

.randa-special .section-title h2 {
  color: white;
}

.randa-special .section-title h2::after {
  background-color: white;
}

.randa-special .section-title p {
  color: rgba(255, 255, 255, 0.8);
}

.randa-content {
  max-width: 800px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 8px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.randa-content p {
  margin-bottom: 20px;
  line-height: 1.8;
}

/* Testimonials */
.testimonials {
  background-color: #f9f9f9;
}

.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-item {
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  position: relative;
}

.testimonial-item::before {
  content: "\201C";
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 5rem;
  color: rgba(212, 167, 98, 0.1);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-text {
  font-size: 1.1rem;
  color: #555;
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--primary);
}

.author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h4 {
  color: var(--secondary);
  margin-bottom: 5px;
}

.author-info p {
  color: #777;
  font-size: 0.9rem;
}

/* B2B Section */
.b2b-section {
  background-color: var(--secondary);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.b2b-section .section-title h2 {
  color: white;
}

.b2b-section .section-title h2::after {
  background-color: var(--primary);
}

.b2b-section .section-title p {
  color: rgba(255, 255, 255, 0.8);
}

.b2b-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.b2b-feature {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 8px;
  transition: transform 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.b2b-feature:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.15);
}

.b2b-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.b2b-feature h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.b2b-feature p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

/* Contact Section */
.contact {
  background-color: white;
}

.contact-card {
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s;
  border: 1px solid #eee;
}

.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(212, 167, 98, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--primary);
  font-size: 1.5rem;
}

.contact-card h3 {
  color: var(--secondary);
  margin-bottom: 15px;
}

.contact-card p,
.contact-card a {
  color: #666;
  text-decoration: none;
}

.contact-card a:hover {
  color: var(--primary);
}

.contact-form {
  background-color: white;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #eee;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--secondary);
  font-weight: 600;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
}

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

/* Footer */
footer {
  background-color: var(--secondary);
  color: white;
  padding: 60px 0 0;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 10px;
  background: linear-gradient(
    90deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
}

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

.footer-column h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
  font-family: "Georgia", serif;
}

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

.footer-column p {
  margin-bottom: 15px;
  color: #bbb;
}

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

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #bbb;
  text-decoration: none;
  transition: all 0.3s;
  display: block;
  padding: 5px 0;
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer-newsletter p {
  margin-bottom: 20px;
}

.newsletter-form {
  display: flex;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 15px;
  border: none;
  border-radius: 4px 0 0 4px;
  font-size: 1rem;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
}

.newsletter-form input::placeholder {
  color: #ccc;
}

.newsletter-form button {
  background-color: var(--primary);
  color: white;
  border: none;
  padding: 0 20px;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  transition: background-color 0.3s;
}

.newsletter-form button:hover {
  background-color: var(--primary-dark);
}

.footer-bottom {
  background-color: rgba(0, 0, 0, 0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 0.9rem;
  color: #bbb;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .about-content {
    flex-direction: column;
  }

  .about-image,
  .about-text {
    flex: none;
    width: 100%;
  }

  .hero h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .header-top .container {
    flex-direction: column;
    gap: 10px;
  }

  .contact-info {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .mobile-menu-btn {
    display: block;
  }

  nav {
    position: fixed;
    top: 120px;
    left: -100%;
    width: 80%;
    height: calc(100vh - 120px);
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: left 0.3s;
    z-index: 999;
  }

  nav.active {
    left: 0;
  }

  nav ul {
    flex-direction: column;
    padding: 30px;
  }

  .hero {
    padding: 80px 0;
  }

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

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

  .btn-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .btn-outline {
    margin-left: 0;
  }

  .section {
    padding: 60px 0;
  }

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

@media (max-width: 576px) {
  .features {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 20px;
  }

  .brand-item {
    min-width: 120px;
  }
}
