	/* Announcement - desktop */
	.announcement-bar {
	  background: #5c4435;
	  color: #fff;
	  padding: 8px 16px;
	  border-bottom: 1px solid #e0d9b9;
	  display: flex;
	  justify-content: center;
	  align-items: center;
	  text-align: center;

	  /* 关键：防止内部跑马灯撑开页面 */
	  overflow: hidden;
	  white-space: nowrap; /* 保证一行（mobile 时）*/
	}

	/* 桌面显示的长文本（如需）*/
	.announcement-bar .announcement-full {
	  display: inline-block;
	  max-width: 900px;
	}

	/* 隐藏图标与短滚动文本在 mobile */
	@media (max-width: 768px) {
	  .announcement-bar i {
		display: none;
	  }

	  /* 短文本用 transform 滚动（不要用 padding-left:100%） */
	  .announcement-bar .announcement-short {
		display: inline-block;
		white-space: nowrap;
		/* no padding-left here! */
		animation: marquee 10s linear infinite;
		will-change: transform;
	  }

	  @keyframes marquee {
		from { transform: translateX(100%); }   /* 从右边外开始 */
		to   { transform: translateX(-100%); }  /* 移到左边外结束 */
	  }
	}
	
	.tagline {
	  font-family: 'Playfair Display', serif;
	  font-size: 1rem;
	  font-style: italic;
	  color: #3a2c1e; /* matches your coffee theme */
	}
	
	.tagline-hero {
	  font-family: 'Playfair Display', serif;
	  font-size: 1.3rem;       /* slightly larger for readability */
	  font-style: italic;
	  font-weight: 400;        /* keeps it elegant */
	  color: #f5f0ea;          /* softer white, blends better */
	  margin-top: 10px;        /* space below heading */
	  line-height: 1.6;        /* improves readability */
	  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* subtle depth */
	}
	
	/* 默认隐藏 mobile-actions */
	.mobile-actions {
	  display: none;
	  gap: 10px;
	}

	/* 手机版时显示 */
	@media (max-width: 768px) {
	  .mobile-actions {
		display: flex;
		align-items: center;
	  }

	  /* 隐藏 nav 里的按钮（避免重复） */
	  .nav-menu .icon-btn {
		display: none;
	  }
	}
	
	*{
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      }
	  
	  html {
		  scroll-behavior: smooth;
	  }

      body {
        background-color: #f9f5f0;
        color: #3a2c1e;
        line-height: 1.6;
      }

      .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
      }

      /* Premium Header */
      header {
        background: #fff;
        padding: 15px 5%;
        box-shadow: 0 2px 10px rgba(59, 42, 33, 0.1);
        position: sticky;
        top: 0;
        z-index: 100;
      }

      .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1200px;
        margin: 0 auto;
      }

	.logo {
            font-family: 'Playfair Display', serif;
            font-style: italic;
            font-size: 32px;
            font-weight: 700;
            background: linear-gradient(135deg, #3b2a21, #b08d57);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 2px;
            flex: 1;
            text-align: left;
            cursor: pointer;
            transition: transform 0.3s ease, background 0.3s ease;
        }

        .logo:hover {
            transform: scale(1.05);
            background: linear-gradient(135deg, #7a5c44, #d4a373);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .logo span {
            color: #d4af37;
            font-weight: 700;
            font-style: italic;
            opacity: 0.85;
        }

      .nav-menu {
        display: flex;
        gap: 30px;
        align-items: center;
      }

      .nav-link {
        text-decoration: none;
        color: #3b2a21;
        font-weight: 500;
        font-size: 16px;
        transition: all 0.3s ease;
        position: relative;
        padding: 5px 0;
      }

      .nav-link:hover {
        color: #7a5c44;
      }

      .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: linear-gradient(90deg, #3b2a21, #7a5c44);
        transition: width 0.3s ease;
      }

      .nav-link:hover::after {
        width: 100%;
      }

      .icon-btn,
      .mobile-menu-btn {
        background: none;
        border: none;
        color: #3b2a21;
        font-size: 20px;
        cursor: pointer;
        padding: 8px;
        transition: 0.3s;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .icon-btn:hover,
      .mobile-menu-btn:hover {
        background-color: #f3ebe4;
        transform: scale(1.05);
      }

      .mobile-menu-btn {
        display: none;
      }

      /* Responsive Design */
      @media (max-width: 768px) {
        .nav-menu {
          display: none;
          position: absolute;
          top: 70px;
          left: 0;
          width: 100%;
          background: white;
          flex-direction: column;
          padding: 20px;
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
          gap: 20px;
        }

        .nav-menu.active {
          display: flex;
        }

        .mobile-menu-btn {
          display: flex;
        }

        .logo {
          font-size: 24px;
          text-align: left;
          padding-left: 10px;
        }
      }

      /* Hero Section */
      .hero {
        background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1495474472287-4d71bcdd2085?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1200&q=80');
        background-size: cover;
        background-position: center;
        height: 92vh;
        display: flex;
        align-items: center;
        text-align: center;
        color: #fff;
      }

      .hero-content {
        max-width: 800px;
        margin: 0 auto;
      }

      .hero h1 {
		  font-family: 'Playfair Display', serif;  /* premium serif font */
		  font-size: 3.5rem;                       /* strong hero size */
		  font-weight: 700;                        /* bold, elegant */
		  letter-spacing: 1px;                     /* refined spacing */
		  text-transform: capitalize;              /* consistent style */
		  margin-bottom: 20px;
		  color: #fff;                             /* stands out on hero */
		  line-height: 1.2;                        /* balanced spacing */
		  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.4); /* smoother shadow */
      }

      .hero p {
        font-size: 1.2rem;
        margin-bottom: 30px;
      }

      .btn {
        display: inline-block;
        background-color: #5d4037;
        color: #fff;
        padding: 12px 30px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: 600;
        transition: background-color 0.3s;
      }

      .btn:hover {
        background-color: #8d6e63;
      }

      /* Coffee Menu */
        .coffee-menu {
            padding: 80px 0;
        }
        
        .menu-header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .menu-items {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .menu-item {
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease;
        }
        
        .menu-item:hover {
            transform: translateY(-10px);
        }
        
        .menu-item img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .menu-item-content {
            padding: 20px;
        }
        
        .menu-item h3 {
            font-size: 20px;
            margin-bottom: 10px;
            color: #3b2a21;
        }
        
        .menu-item p {
            color: #7a5c44;
            margin-bottom: 15px;
        }
        
        .price {
            font-weight: 700;
            color: #3b2a21;
            font-size: 20px;
        }

      /* About Section */
        .about {
            background: linear-gradient(135deg, #3b2a21 0%, #5c4435 100%);
            padding: 80px 0;
            color: #fff;
        }
        
        .about-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 50px;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-image {
            flex: 1;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .section-title {
            font-size: 36px;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;			
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 3px;
            background: #d9a66d;
        }
        
        .about-text p {
            font-size: 18px;
            line-height: 1.8;
            margin-bottom: 20px;
        }

      /* Location Section */
      .locations {
        padding: 80px 0;
      }

      .location-cards {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
      }

      .location-card {
        background-color: #fff;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      }

      .location-info {
        padding: 20px;
      }

      .location-info h3 {
        margin-bottom: 10px;
        color: #5d4037;
      }

      /* Footer */
      .footer {
        background: #3b2a21;
        /* dark premium gradient */
        color: #e1dfdc;
        padding: 60px 20px 30px;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      }

      .footer .footer-content {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 40px;
        max-width: 1100px;
        margin: 0 auto 40px;
      }

      .footer-column h3 {
        font-size: 20px;
        color: #f8f6f3;
        margin-bottom: 15px;
        position: relative;
      }

      .footer-column h3::after {
        content: "";
        width: 40px;
        height: 2px;
        background: #c89b6d;
        /* gold accent */
        position: absolute;
        bottom: -6px;
        left: 0;
      }

      .footer-column p,
      .footer-column ul {
        font-size: 15px;
        line-height: 1.7;
        margin: 0;
      }

      .footer-column ul {
        list-style: none;
        padding: 0;
      }

      .footer-column ul li {
        margin-bottom: 10px;
      }

      .footer-column a {
        color: #e1dfdc;
        text-decoration: none;
        transition: color 0.3s;
      }

      .footer-column a:hover {
        color: #c89b6d;
        /* gold hover */
      }

      .social-icons a {
        font-size: 20px;
        margin-right: 12px;
        color: #e1dfdc;
        transition: color 0.3s;
      }

      .social-icons a:hover {
        color: #c89b6d;
      }

      .copyright {
        text-align: center;
        font-size: 14px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 20px;
        color: #aaa;
      }
      .guarantee-strip {
        background: #f8f8f8;
        padding: 40px 20px;
      }

      .guarantee-container {
        display: flex;
        justify-content: space-around;
        align-items: center;
        flex-wrap: wrap;
        max-width: 1200px;
        margin: auto;
        gap: 20px;
      }

      .guarantee-item {
        flex: 1;
        min-width: 250px;
        max-width: 350px;
        text-align: center;
      }

      .guarantee-item i {
        font-size: 2rem;
        color: #4a3c31;
        margin-bottom: 10px;
      }

      .guarantee-item h3 {
        font-weight: bold;
        margin-bottom: 5px;
        color: #222;
      }

      .guarantee-item p {
        color: #555;
        font-size: 0.95rem;
      }
	  
	  /* Customer Feedback Section */
		.customer-feedback {
		  padding: 80px 0;
		  background-color: #f9f5f0;
		}

		.feedback-header {
		  text-align: center;
		  margin-bottom: 50px;
		}

		.feedback-cards {
		  display: grid;
		  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
		  gap: 30px;
		  margin-bottom: 50px;
		}

		.feedback-card {
		  background: #fff;
		  border-radius: 12px;
		  padding: 25px;
		  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
		  transition: transform 0.3s ease;
		  opacity: 0;
		  transform: translateY(20px);
		  animation: fadeInUp 0.6s ease forwards;
		}

		.feedback-card:hover {
		  transform: translateY(-5px);
		}

		@keyframes fadeInUp {
		  to {
			opacity: 1;
			transform: translateY(0);
		  }
		}

		.customer-info {
		  display: flex;
		  align-items: center;
		  margin-bottom: 15px;
		}

		.customer-avatar {
		  width: 50px;
		  height: 50px;
		  border-radius: 50%;
		  background: linear-gradient(135deg, #3b2a21, #7a5c44);
		  display: flex;
		  align-items: center;
		  justify-content: center;
		  margin-right: 15px;
		  color: #fff;
		  font-size: 20px;
		}

		.customer-details h4 {
		  margin: 0 0 5px 0;
		  color: #3b2a21;
		  font-size: 18px;
		}

		.rating {
		  color: #3a2c1e;
		  font-size: 14px;
		}

		.feedback-text {
		  color: #5c4435;
		  line-height: 1.6;
		  font-style: italic;
		  margin: 0;
		}

		/* Rating Summary */
		.rating-summary {
		  text-align: center;
		  padding-top: 30px;
		  border-top: 1px solid #e0d9b9;
		}

		.overall-rating {
		  display: inline-block;
		}

		.rating-value {
		  font-size: 48px;
		  font-weight: 700;
		  color: #3b2a21;
		  margin-bottom: 5px;
		}

		.rating-stars {
		  color: #f8c455;
		  font-size: 20px;
		  margin-bottom: 5px;
		}

		.rating-summary p {
		  color: #7a5c44;
		  margin: 0;
		}

		/* Loading and Error States */
		.loading-state {
		  text-align: center;
		  padding: 40px;
		  color: #7a5c44;
		}

		.loading-spinner {
		  width: 40px;
		  height: 40px;
		  border: 4px solid #f3f3f3;
		  border-top: 4px solid #3b2a21;
		  border-radius: 50%;
		  animation: spin 1s linear infinite;
		  margin: 0 auto 20px;
		}

		@keyframes spin {
		  0% { transform: rotate(0deg); }
		  100% { transform: rotate(360deg); }
		}

		.error-state {
		  text-align: center;
		  padding: 40px;
		  color: #d32f2f;
		}

		.error-state i {
		  font-size: 48px;
		  margin-bottom: 20px;
		}

		.btn-retry {
		  background: #3b2a21;
		  color: white;
		  border: none;
		  padding: 10px 20px;
		  border-radius: 5px;
		  cursor: pointer;
		  margin-top: 15px;
		  transition: background 0.3s ease;
		}

		.btn-retry:hover {
		  background: #5c4435;
		}

		/* Responsive adjustments */
		@media (max-width: 768px) {
		  .feedback-cards {
			grid-template-columns: 1fr;
		  }
		  
		  .feedback-card {
			padding: 20px;
		  }
		  
		  .rating-value {
			font-size: 36px;
		  }
		}
		
		/* Feedback Form Section */
		.feedback-form-section {
		  padding: 80px 0;
		  background: #3b2a21;
		}

		.form-header {
		  text-align: center;
		  margin-bottom: 50px;
		}

		.feedback-form {
		  max-width: 600px;
		  margin: 0 auto;
		  background: #fff;
		  padding: 40px;
		  border-radius: 12px;
		  box-shadow: 0 5px 20px rgba(59, 42, 33, 0.1);
		}

		.form-row {
		  display: flex;
		  gap: 20px;
		  margin-bottom: 20px;
		}

		.form-group {
		  flex: 1;
		  margin-bottom: 25px;
		}

		.form-group label {
		  display: block;
		  margin-bottom: 8px;
		  font-weight: 600;
		  color: #3b2a21;
		  font-size: 14px;
		}

		.form-group input,
		.form-group textarea {
		  width: 100%;
		  padding: 12px 16px;
		  border: 2px solid #e0d9b9;
		  border-radius: 8px;
		  font-size: 16px;
		  transition: all 0.3s ease;
		  background: #fafafa;
		}

		.form-group input:focus,
		.form-group textarea:focus {
		  outline: none;
		  border-color: #7a5c44;
		  background: #fff;
		  box-shadow: 0 0 0 3px rgba(122, 92, 68, 0.1);
		}

		/* Star Rating */
		.rating-input {
		  margin-top: 5px;
		}

		.stars {
		  display: flex;
		  flex-direction: row-reverse;
		  justify-content: flex-end;
		  gap: 5px;
		}

		.stars input {
		  display: none;
		}

		.stars label {
		  font-size: 32px;
		  color: #e0d9b9;
		  cursor: pointer;
		  transition: color 0.2s ease;
		  margin-bottom: 0;
		}

		.stars label:hover,
		.stars label:hover ~ label,
		.stars input:checked ~ label {
		  color: #f8c455;
		}

		/* Submit Button */
		.submit-btn {
		  width: 100%;
		  background: linear-gradient(135deg, #3b2a21, #5c4435);
		  color: white;
		  border: none;
		  padding: 16px;
		  border-radius: 8px;
		  font-size: 16px;
		  font-weight: 600;
		  cursor: pointer;
		  transition: all 0.3s ease;
		  position: relative;
		  overflow: hidden;
		}

		.submit-btn:hover {
		  background: linear-gradient(135deg, #5c4435, #7a5c44);
		  transform: translateY(-2px);
		  box-shadow: 0 5px 15px rgba(59, 42, 33, 0.3);
		}

		.submit-btn:disabled {
		  opacity: 0.7;
		  cursor: not-allowed;
		  transform: none;
		}

		.loading-spinner {
		  width: 20px;
		  height: 20px;
		  border: 2px solid transparent;
		  border-top: 2px solid #fff;
		  border-radius: 50%;
		  animation: spin 1s linear infinite;
		  margin: 0 auto;
		}

		@keyframes spin {
		  0% { transform: rotate(0deg); }
		  100% { transform: rotate(360deg); }
		}

		/* Form Messages */
		.form-message {
		  margin-top: 20px;
		  padding: 12px;
		  border-radius: 6px;
		  text-align: center;
		  font-weight: 500;
		}

		.form-message.success {
		  background: #d4edda;
		  color: #155724;
		  border: 1px solid #c3e6cb;
		}

		.form-message.error {
		  background: #f8d7da;
		  color: #721c24;
		  border: 1px solid #f5c6cb;
		}

		/* Responsive Design */
		@media (max-width: 768px) {
		  .form-row {
			flex-direction: column;
			gap: 0;
		  }
		  
		  .feedback-form {
			padding: 30px 20px;
			margin: 0 20px;
		  }
		  
		  .stars label {
			font-size: 28px;
		  }
		}
		
		/* Pagination Controls */
.pagination-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    padding-top: 30px;
	padding-bottom: 30px;
    border-top: 1px solid #e0d9b9;
}

.pagination-btn {
    background: linear-gradient(135deg, #3b2a21, #5c4435);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pagination-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, #5c4435, #7a5c44);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 42, 33, 0.3);
}

.pagination-btn:disabled {
    background: #cccccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.page-info {
    color: #3b2a21;
    font-weight: 600;
    font-size: 16px;
    min-width: 120px;
    text-align: center;
}

/* Feedback Meta Information */
.feedback-meta {
    margin-top: 15px;
    text-align: right;
}

.feedback-date {
    color: #7a5c44;
    font-size: 0.9rem;
    font-style: italic;
    opacity: 0.8;
}

/* Feedback Card Styling */
.feedback-cards .menu-item {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.feedback-cards .menu-item:hover {
    transform: translateY(-5px);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.customer-info {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.customer-details h4 {
    margin: 0 0 5px 0;
    color: #3b2a21;
    font-size: 18px;
}

.rating {
    color: #f8c455;
    font-size: 14px;
}

.feedback-text {
    color: #5c4435;
    line-height: 1.6;
    font-style: italic;
    margin: 0;
}

/* Loading and Error States */
.loading-state {
    text-align: center;
    padding: 40px;
    color: #7a5c44;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3b2a21;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.error-state {
    text-align: center;
    padding: 40px;
    color: #d32f2f;
}

.error-state i {
    font-size: 48px;
    margin-bottom: 20px;
}

.btn-retry {
    background: #3b2a21;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 15px;
    transition: background 0.3s ease;
}

.btn-retry:hover {
    background: #5c4435;
}

/* Responsive Design */
@media (max-width: 768px) {
    .pagination-controls {
        flex-direction: column;
        gap: 15px;
    }
    
    .pagination-btn {
        width: 100%;
        justify-content: center;
    }
    
    .page-info {
        order: -1;
    }
}
		
		
					  
		


