<!-- HTML !-->


/* CSS */
.button-46 {
  align-items: center;
  background-color: rgba(240, 240, 240, 0.26);
  border: 1px solid #DFDFDF;
  border-radius: 16px;
  box-sizing: border-box;
  color: #000000;
  cursor: pointer;
  display: flex;
  font-family: Inter, sans-serif;
  font-size: 15px;
  justify-content: center;
  line-height: 28px;
  max-width: 100%;
  padding: 14px 16px;
  text-decoration: none;
  transition: all .2s;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  width: 150px;
  height: 50px;
}

.button-46:active,
.button-46:hover {
  outline: 0;
}

.button-46:hover {
  background-color: #FFFFFF;
  border-color: rgba(0, 0, 0, 0.19);
}

.button-etsy {
    display: inline-block;
    background-color: #FF5733; /* Vibrant orange color */
    color: #fff; /* White text for contrast */
    padding: 10px 20px; /* Spacing inside the button */
    font-size: 16px; /* Adjust font size */
    font-weight: bold; /* Make the text slightly bold */
    text-align: center;
    text-decoration: none; /* Remove underline from links */
    border: none; /* Remove any default border */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
    cursor: pointer; /* Change cursor to pointer */
    transition: background-color 0.3s ease, box-shadow 0.3s ease; /* Smooth transition for hover effects */
    margin-top: 10px; /* Add spacing above the button */
}

.button-etsy:hover {
    background-color: #FF4500; /* Darker orange for hover */
    box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.3); /* Slightly larger shadow */
}

.button-etsy:active {
    background-color: #FF3300; /* Even darker for active state */
    box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.2); /* Reduce shadow on click */
    transform: translateY(2px); /* Add click effect */
}

.button-zazzle {
    /* Base Display and Shape */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* Reduced padding */
    padding: 9px 21px; 
    border-radius: 50px; /* Maintains the pill shape */
    border: 2px solid #0056B3; 
    
    /* Color and Background (Same as before) */
    background: linear-gradient(135deg, #007BFF 0%, #0056B3 100%); /* Deep Sapphire Gradient */
    color: #F8F9FA;
    
    /* Typography - Reduced Font Size */
    font-size: 14px; /* Reduced from 17px */
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    text-decoration: none;
    
    /* Effects and Interactivity - Reduced Shadow and Transition */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Reduced shadow depth */
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Hover Effect: Lighter color and subtle upward movement */
.button-zazzle:hover {
    background: linear-gradient(135deg, #0088FF 0%, #0069D9 100%);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3); /* Slightly expands shadow */
    transform: translateY(-1px); /* Smaller lift */
    border-color: #0069D9;
}

/* Active/Click Effect: Simulates being pressed down */
.button-zazzle:active {
    background: #0056B3;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
    transform: translateY(0);
}

.screenshot-container {
    display: inline-block;
    padding: 15px;
    /* Reintroducing a subtle, slightly darker border */
    border: 1px solid #e0e0e0; /* A light, refined grey border */
    border-radius: 12px;
    /* Adjusted shadow for balance with the new border */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
    background-color: #f8f9fa;
    perspective: 1000px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ==============================================
   DEFAULT STYLES (Applies to all devices)
   ============================================== */
.screenshot-container {
    display: inline-block;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
    background-color: #f8f9fa;
    perspective: 1000px;
    /* Keep the transition for a smooth visual when the media query allows the hover */
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.screenshot-container img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    transform: scale(1);
    transform-origin: center center;
}

/* ==============================================
   HOVER STYLES (Only applied to devices with a mouse/pointer)
   ============================================== */

@media (hover: hover) and (pointer: fine) {
    /* This media query ensures these styles ONLY apply if:
       1. The device supports hovering (:hover is possible).
       2. The device has a 'fine' pointer (like a mouse, not a finger).
    */
    
    .screenshot-container:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12), 
                    0 8px 8px rgba(0, 0, 0, 0.1);
        border-color: #c9c9c9; 
    }
    
    .screenshot-container:hover img {
        /* The zoom and slight rotation effect */
        transform: scale(1.2) rotate(1deg);
        z-index: 10;
    }
}


.fb-button-wrapper {
    display: inline-block;
    transform: scale(1.2); /* Adjust the scale as needed */
    transform-origin: top left; /* Ensure scaling starts from the top-left corner */	
}

@media (min-width: 768px) {
  .button-46 {
    font-size: 15px;
    width: 150px;
	height: 50px;
    padding: 14px 16px;
  }
}