 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 body {
     background: #cfcfcf;
     font-family: 'Montserrat', sans-serif;
     min-height: 100vh;
     width: 100vw;
     display: flex;
     justify-content: center;
     align-items: center;
     padding: 40px 0;
     /* Page chi length vadhli tari padding rahel */
     position: relative;
     overflow-x: hidden;
 }

 .bg-blur-circle {
     position: absolute;
     border-radius: 50%;
     filter: blur(120px);
     z-index: 0;
     opacity: 0.4;
 }

 .circle-1 {
     width: 600px;
     height: 600px;
     background: #e6d5a7;
     top: -10%;
     left: -10%;
 }

 .circle-2 {
     width: 500px;
     height: 500px;
     background: #b89a4b;
     bottom: -10%;
     right: -5%;
 }

 .app-container {
     z-index: 1;
     width: 90%;
     max-width: 1000px;
     display: flex;
     justify-content: center;
 }

 .glass-card {
     background: rgba(255, 255, 255, 0.97);
     width: 100%;
     /* Height ata "Auto" ahe, sagla aat basel */
     min-height: fit-content;
     border-radius: 40px;
     border: 1px solid rgba(255, 255, 255, 1);
     box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
     display: flex;
     flex-direction: column;
     padding: 60px;
     /* Purpuresly vadhiv spacing */
     text-align: center;
 }

 /* LOGO SECTION */
 .brand-box {
     margin-bottom: 40px;
 }

 .glass-logo {
     font-family: 'Cormorant Garamond', serif;
     font-size: 4.5rem;
     font-weight: 700;
     letter-spacing: 15px;
     background: linear-gradient(135deg, #8a6d29 0%, #d4af37 50%, #8a6d29 100%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
 }

 .tagline {
     font-size: 0.8rem;
     letter-spacing: 8px;
     color: #999;
     margin-top: 10px;
 }

 /* CONTENT SPACING */
 .announcement {
     margin-bottom: 40px;
 }

 .status {
     font-family: 'Cormorant Garamond', serif;
     font-size: 2.5rem;
     letter-spacing: 12px;
     color: #222;
 }

 .gold-accent-line {
     width: 60px;
     height: 2px;
     background: #d4af37;
     margin: 15px auto;
 }

 .product-showcase {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 25px;
     margin-bottom: 50px;
 }

 .img-box {
     width: 100%;
     aspect-ratio: 1/1;
     border-radius: 20px;
     overflow: hidden;
     border: 1px solid #f0f0f0;
     transition: 0.4s ease;
 }

 .img-box img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .item-card:hover .img-box {
     transform: translateY(-10px);
     border-color: #d4af37;
     box-shadow: 0 15px 30px rgba(184, 154, 75, 0.25);
 }

 .item-label {
     display: block;
     margin-top: 15px;
     font-size: 0.65rem;
     font-weight: 600;
     letter-spacing: 1.5px;
     color: #666;
     text-transform: uppercase;
 }

 /* --- CONTACT SECTION (Fixed & Spaced) --- */
 .contact-footer {
     margin-top: auto;
     /* Footer khali push kela */
     padding-top: 30px;
 }

 .footer-divider {
     width: 100%;
     height: 1px;
     background: #eee;
     margin-bottom: 30px;
 }

 .contact-label {
     font-size: 0.75rem;
     letter-spacing: 5px;
     color: #b89a4b;
     font-weight: 700;
     margin-bottom: 15px;
 }

 .contact-details {
     display: flex;
     justify-content: center;
     align-items: center;
     gap: 20px;
 }

 .name-box {
     font-size: 1.4rem;
     font-weight: 700;
     color: #000;
     letter-spacing: 1px;
 }

 .gold-sep {
     color: #d4af37;
     font-size: 1.5rem;
     font-weight: 300;
 }

 .phone-box {
     font-size: 1.3rem;
     font-weight: 600;
     color: #333;
 }

 /* RESPONSIVE */
 @media (max-width: 768px) {
     .glass-card {
         padding: 40px 20px;
     }

     .product-showcase {
         grid-template-columns: 1fr 1fr;
     }

     .glass-logo {
         font-size: 2.2rem;
         letter-spacing: 6px;
     }

     .contact-details {
         flex-direction: column;
         gap: 10px;
     }

     .gold-sep {
         display: none;
     }
 }

 .contact-buttons {
     margin-top: 15px;
     display: flex;
     justify-content: center;
     gap: 15px;
 }

 .call-btn,
 .whatsapp-btn {
     text-decoration: none;
     padding: 10px 18px;
     border-radius: 30px;
     font-size: 14px;
     font-weight: 600;
     transition: 0.3s ease;
 }

 /* Call Button */
 .call-btn {
     background: linear-gradient(135deg, #d4af37, #b8962e);
     color: white;
 }

 .call-btn:hover {
     transform: scale(1.05);
     box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
 }

 /* WhatsApp Button */
 .whatsapp-btn {
     background: #25D366;
     color: white;
 }

 .whatsapp-btn:hover {
     transform: scale(1.05);
     box-shadow: 0 0 10px rgba(37, 211, 102, 0.5);
 }