.privacy-policy-container {
    position: fixed;
    /* 固定在視窗底部 */
    bottom: 0;
    left: 0;
    width: 100%;
    /* 覆蓋整個視窗的寬度 */
    background-color: #fff;
    /* 選擇一個背景顏色 */
    color: #333;
    /* 文字顏色 */
    text-align: center;
    /* 文字置中 */
    padding: 10px 0;
    /* 上下內距 */
    box-shadow: 0px -2px 5px rgba(0, 0, 0, 0.2);
    /* 可選的陰影效果 */
    z-index: 99999;
    /* 確保它在其他內容之上 */
    display: none;
}

.privacy-policy-container button {
    background-color: #4CAF50;
    /* 按鈕背景顏色 */
    color: white;
    /* 按鈕文字顏色 */
    border: none;
    /* 無邊框 */
    padding: 10px 20px;
    /* 按鈕內邊距 */
    text-align: center;
    /* 文字置中 */
    text-decoration: none;
    /* 無文本裝飾 */
    display: inline-block;
    /* 行內塊顯示 */
    margin: 4px 2px;
    /* 邊距 */
    cursor: pointer;
    /* 指針游標 */
    border-radius: 4px;
    /* 圓角邊框 */
}

/* 當需要隱藏條款時 */
.hidden {
    display: none;
}

/* Wedding Templates Section Design */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #333;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #777;
    margin-bottom: 3rem;
}

.template-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    /* Ensure positioning context for overlay link */
}

.card-link-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}

.template-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.template-card-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.template-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.template-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}

.template-card:hover .template-overlay {
    opacity: 1;
}

.template-card-body {
    padding: 1.5rem;
    text-align: center;
}

.template-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #222;
}

.template-desc {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

.template-btn {
    background-color: var(--primary-color);
    /* Fallback or define variable */
    color: #fff;
    border-radius: 50px;
    padding: 10px 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.template-btn:hover {
    background-color: #333;
    color: #fff;
}

/* GQ Style Hot Articles */
.gq-article-card {
    margin-bottom: 30px;
    background: transparent;
    /* No background card style */
}

.gq-image-wrap {
    margin-bottom: 15px;
    overflow: hidden;
    position: relative;
}

.gq-image-wrap img {
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: block;
    width: 100%;
}

.gq-image-wrap:hover img {
    transform: scale(1.05);
    /* Subtle zoom */
}

.gq-text {
    text-align: left;
    /* Align text left like editorial */
}

.gq-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #e31b23;
    /* GQ Red or Accent Color */
    font-weight: 700;
    margin-bottom: 8px;
    display: block;
}

.gq-title {
    font-family: 'Playfair Display', serif;
    /* Editorial Font */
    font-weight: 700;
    line-height: 1.2;
    color: #000;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.gq-title:hover {
    color: #333;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}

.gq-title-lg {
    font-size: 2rem;
}

.gq-title-sm {
    font-size: 1.25rem;
}

.gq-subtitle {
    font-family: 'Noto Sans', sans-serif;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* Limit to 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-clamp: 2;
    /* Standard property for compatibility */
}

/* Vogue Style Layout */
.vogue-card {
    margin-bottom: 30px;
}

.vogue-image-wrap {
    margin-bottom: 12px;
    overflow: hidden;
    position: relative;
}

.vogue-image-wrap img {
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: block;
    width: 100%;
}

.vogue-image-wrap:hover img {
    transform: scale(1.03);
}

.vogue-category {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #333;
    font-weight: 700;
    margin-bottom: 5px;
    display: block;
}

.vogue-title {
    font-family: 'Noto Sans TC', 'Microsoft JhengHei', sans-serif;
    /* Cleaner Sans for Vogue Modern Look */
    font-weight: 700;
    line-height: 1.4;
    color: #000;
    text-decoration: none;
    display: block;
    margin-bottom: 5px;
}

.vogue-title:hover {
    color: #555;
}

.vogue-title-lg {
    font-size: 1.75rem;
}

.vogue-title-sm {
    font-size: 1rem;
}

.vogue-meta {
    font-size: 0.7rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Artists Hover Effect (Dark Elegant) */
.artists-thumb .artists-hover {
    background-color: rgba(0, 0, 0, 0.85);
    /* Dark background */
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.artists-hover p {
    display: flex;
    align-items: baseline;
    margin-bottom: 0.5rem;
}

.artists-hover p strong {
    color: #ffffff;
    min-width: 100px;
    /* Adjusted for mobile */
    margin-right: 15px;
    flex-shrink: 0;
}