

body {
    background-color: #f2f2f2;
    color: #333;
    line-height: 1.4;
    font-family: "myriad-pro", sans-serif;
    font-weight: 300;
    font-style: normal;
    margin: 0;
    padding: 0;
    background-image: url('/icons/background.png');
    background-repeat: repeat; /* This enables tiling */
    background-attachment: fixed; /* Optional: keeps background fixed while scrolling */
    
}

/* Navigation Bar */
#globalnav {
  background: linear-gradient(to bottom, #737373 0%, #2d2d2d 100%);
  height: 36px;
  border-bottom: 1px solid #000;
  box-shadow: 0 1px 3px rgba(0,0,0,0.3);
  font-family: "Myriad Set Pro", "Lucida Grande", "Helvetica Neue", Helvetica, Arial, sans-serif;
  min-width: 980px;
}

.globalnav-wrapper {
  width: 980px;
  margin: 0 auto;
}

.globalnav-menu {
  display: flex;
  height: 36px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.globalnav-item {
  position: relative;
}

.globalnav-link {
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 200;
  padding: 0 15px;
  line-height: 36px;
  text-shadow: 0 -1px 0 rgba(0,0,0,0.5);
  opacity: 0.8;
  transition: opacity 0.2s ease;
  display: block;
  letter-spacing: 0.3px;
}

.globalnav-link:hover {
  opacity: 1;
  background: linear-gradient(to bottom, 
    rgba(255,255,255,0.1), 
    rgba(255,255,255,0.05));
}

.globalnav-item:not(:first-child)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 1px;
  background: linear-gradient(to bottom, 
    rgba(0,0,0,0.6), 
    rgba(255,255,255,0.1), 
    rgba(0,0,0,0.6));
}

/* Hero Section */
.hero {
    background: linear-gradient(to bottom, #f2f2f2, #e5e5e5);
    text-align: center;
    padding: 40px 0;
    border-bottom: 1px solid #d6d6d6;
}

.hero h1 {
    font-size: 40px;
    font-weight: 200;
    margin-bottom: 10px;
    text-shadow: 0 1px 1px rgba(255,255,255,0.8);
}

.hero h2 {
    font-size: 24px;
    font-weight: 200;
    margin-bottom: 20px;
    text-shadow: 0 1px 1px rgba(255,255,255,0.8);
}

.button-group {
    margin-top: 20px;
}


.ios-btn {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(to bottom, #6bb4ff, #1a75ff);
    border: 1px solid #0055cc;
    border-radius: 6px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    text-shadow: 0 -1px 0 rgba(0,0,0,0.3);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.3), 
                0 1px 2px rgba(0,0,0,0.2);
    text-decoration: none;
    margin: 0 5px;
    transition: all 0.2s ease;
}

.ios-btn:hover {
    background: linear-gradient(to bottom, #5ca2e6, #1666d9);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.3), 
                0 0 10px rgba(26,117,255,0.5);
}

        .product-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            padding: 20px;
        }
        
        .product-tile {
            background: url('/icons/brushedmetal.png') center center;
            background-size: cover;
            border-radius: 10px;
            overflow: hidden;
            width: 300px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease;
        }
        
        .product-tile:hover {
            transform: translateY(-5px);
        }
        
        .product-info {
            color:  #bcc0c4;
            text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
            padding: 15px;
            text-align: center;
        }

.product-image {
    height: 200px;
    color: #bcc0c4;
    border-radius: 20px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
  
}


.product-info h3 {
    font-size: 18px;
    font-weight: 200;
    margin-bottom: 5px;
}

.product-info p {
    color: #bcc0c4;
    margin-bottom: 15px;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
}


.tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px 15px;
    color: #929292;
    font-size: 10px;
    text-decoration: none;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.tab:hover {
    background: rgba(26,117,255,0.1);
    color: #1a75ff;
}

.tab.active {
    background: rgba(26,117,255,0.2);
    color: #1a75ff;
}

.tab-icon {
    font-size: 18px;
    margin-bottom: 2px;
}

.tab.active .tab-icon {
    font-weight: bold;
}
        /* Popup styles that match your site's aesthetic */
        .popup-container {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.8);
            z-index: 1000;
            justify-content: center;
            align-items: center;
            font-family: inherit;
        }
        
        
        .popup-box {
            padding: 30px;

            border: 2px solid #fff;
            text-align: center;
            color: white;
        }
        
        .popup-box h3 {
            font-size: 24px;
            margin-bottom: 15px;
            color: #fff;
        }
        
        .popup-box p {
            margin-bottom: 20px;
        }
        
        .popup-btn {
            background: #fff;
            color: #000;
            border: none;
            padding: 10px 20px;
            border-radius: 20px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .popup-btn:hover {
            background: #ccc;
        }
        
        /* Close X button in top right */
        .close-x {
            position: absolute;
            top: 10px;
            right: 15px;
            color: white;
            font-size: 24px;
            font-weight: bold;
            cursor: pointer;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
        }
        
        .close-x:hover {
            transform: scale(1.1);
            color: #ccc;
        }
        
        
        .bannerimg {
          transform: scaleX(5); 
          height: 36px;
        }